Skip to content

Commit a3cbce4

Browse files
committed
update init sql
1 parent 6db1349 commit a3cbce4

File tree

1 file changed

+43
-7
lines changed

1 file changed

+43
-7
lines changed

sql/init/init.sql

Lines changed: 43 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,52 @@ CREATE TABLE OrderItems (
6262
INSERT INTO Clients (Name, Address, Region) VALUES
6363
('John Doe', '1234 Elm Street', 'North'),
6464
('Jane Smith', '4321 Oak Avenue', 'South'),
65-
('Acme Corp', '100 Industrial Blvd', 'West');
65+
('Acme Corp', '100 Industrial Blvd', 'West'),
66+
('Bob Johnson', '5678 Pine Road', 'East'),
67+
('Alice Brown', '8765 Maple Lane', 'North'),
68+
('Charlie Davis', '3456 Cedar Street', 'South'),
69+
('Diana Evans', '6543 Birch Avenue', 'West'),
70+
('Edward Harris', '7890 Spruce Blvd', 'East'),
71+
('Fiona Clark', '2345 Willow Drive', 'North'),
72+
('George Lewis', '5432 Aspen Court', 'South'),
73+
('Hannah Walker', '6789 Oak Street', 'West'),
74+
('Ian Young', '1234 Pine Avenue', 'East'),
75+
('Jackie King', '4321 Elm Road', 'North'),
76+
('Kevin Wright', '8765 Maple Street', 'South'),
77+
('Laura Scott', '3456 Cedar Lane', 'West');
6678

6779
-- INSERT SAMPLE DATA INTO Products
6880
INSERT INTO Products (Name, Price, Weight) VALUES
69-
('Product A', 10.00, 2.50),
70-
('Product B', 15.00, 1.75),
71-
('Product C', 5.50, 0.50);
81+
('Coca-Cola 12oz', 1.50, 0.35),
82+
('Pepsi 12oz', 1.50, 0.35),
83+
('Sprite 12oz', 1.50, 0.35),
84+
('Fanta Orange 12oz', 1.50, 0.35),
85+
('Mountain Dew 12oz', 1.50, 0.35),
86+
('Dr Pepper 12oz', 1.50, 0.35),
87+
('7 Up 12oz', 1.50, 0.35),
88+
('Gatorade 20oz', 2.00, 0.60),
89+
('Red Bull 8.4oz', 2.50, 0.24),
90+
('Monster Energy 16oz', 2.50, 0.48),
91+
('Lipton Iced Tea 16oz', 1.75, 0.50),
92+
('Arizona Green Tea 16oz', 1.00, 0.50),
93+
('Snapple Apple 16oz', 1.75, 0.50),
94+
('Vitamin Water 20oz', 2.00, 0.60),
95+
('Powerade 20oz', 2.00, 0.60);
7296

7397
-- INSERT SAMPLE DATA INTO ProductStocks
7498
INSERT INTO ProductStocks (QuantityOnHand, QuantitySold, QuantityReserved, ProductId) VALUES
75-
(100, 20, 10, 1),
76-
(150, 30, 5, 2),
77-
(50, 5, 2, 3);
99+
(1000, 200, 50, 1),
100+
(1200, 250, 60, 2),
101+
(1100, 220, 55, 3),
102+
(900, 180, 45, 4),
103+
(950, 190, 47, 5),
104+
(800, 160, 40, 6),
105+
(850, 170, 42, 7),
106+
(700, 140, 35, 8),
107+
(600, 120, 30, 9),
108+
(650, 130, 32, 10),
109+
(750, 150, 37, 11),
110+
(800, 160, 40, 12),
111+
(850, 170, 42, 13),
112+
(900, 180, 45, 14),
113+
(950, 190, 47, 15);

0 commit comments

Comments
 (0)