forked from syedmurad1/SQLbasic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPopulate stationery v2.txt
49 lines (37 loc) · 989 Bytes
/
Populate stationery v2.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Insert into Stationery
values
(19976, 'A5 folder', 'Red', 0.25, 20);
Insert into Stationery
values
(19977, 'A4 folder', 'Blue', 0.25, 50);
Insert into Stationery
values
(19878, 'A4 folder', 'Green', 0.25, 30);
Insert into Stationery
(Item_code, Colour, Price, Quantity)
values
(20216, 'Red', 2.75, 40);
Insert into Stationery
values
(20217, 'A4 paper 250 sheets', 'Blue', 2.75, 100);
Insert into Stationery
values
(20218, 'A4 paper 250 sheets', 'Green', 2.75, 150);
Insert into Stationery
values
(20219, 'A4 paper 250 sheets', 'White', 2.50, 120);
Insert into Stationery
values
(33006, 'A4 ring binder', 'Red', 1.95, 25);
Insert into Stationery
values
(33007, 'A4 ring binder', 'Green', 1.95, 20);
Insert into Stationery
values
(33008, 'A4 ring binder', 'Blue', 1.95, 35);
Insert into Stationery
values
(33010, 'A4 ring binder', 'Yellow', 1.95, 50);
Insert into Stationery
values
(33015, 'A3 ring binder', 'Black', 1.50, 60);