-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbamazon-seed.sql
More file actions
24 lines (23 loc) · 1.19 KB
/
bamazon-seed.sql
File metadata and controls
24 lines (23 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
INSERT INTO `departments` (`department_name`, `over_head_costs`)
VALUES
("Automotive", 5000),
("Bedding", 4000),
("Dishes", 1000),
("Electronics", 10000),
("Footwear", 5000),
("Men's Clothing", 8000),
("Toys", 5000);
INSERT INTO `products` (`product_name`, `department_name`, `price`, `stock_quantity`, `product_sales`)
VALUES
("Bose SoundLink Color Bluetooth Speaker", "Electronics", 129.00, 12, 0),
("Down Comforter", "Bedding", 25.00, 500, 0),
("Lacoste Men's Short Sleeve Striped Polo Shirt", "Men's Clothing", 125.00, 150, 0),
("Bone Chine Plate", "Dishes", 4.00, 4, 0),
("LEGO Star Wars Yoda's Hut Building Kit", "Toys", 29.99, 135, 0),
("Sony 55-Inch 4K Ultra HD Smart LED TV", "Electronics", 598.00, 30, 0),
("Mpow Bluetooth Headphones", "Electronics", 35.99, 415, 0),
("Penguin Men's Elastic Waist Swim Trunks", "Men's Clothing", 41.99, 80, 0),
("Hankook DynaPro Off-Road Tire", "Automotive", 104.00, 101, 0),
("Bachmann Trains Thomas and Friends - James the Red Engine", "Toys", 55.96, 10, 0),
("AstroAI Digital Tire Pressure Gauge", "Automotive", 8.47, 13, 0),
("Tan Converse All-Star Low-Top Shoes", "Footwear", 49.99, 4, 0);