Work in progress. PostgreSQL / PGAdmin Creating Tables: CREATE TABLE phones (
name VARCHAR(50),
manufacturer VARCHAR(50),
price INTEGER,
units_sold INTEGER,
); Inserting Data into Tables: INSERT INTO phones (name, manufacturer, price, units_sold)
VALUES
('N8', 'Nokia', 150, 7543),
('Droid', 'Motorola', 150, 8395),
('Wave S8500', 'Samsung', 175, 9259);