-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtbl_insert.sql
61 lines (40 loc) · 1.36 KB
/
tbl_insert.sql
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
50
51
52
53
54
55
56
57
58
59
60
INSERT INTO Locations (name, led)
VALUES ('unknown', '0');
INSERT INTO Locations (name, led)
VALUES ('top shelf', 'a');
INSERT INTO Locations (name, led)
VALUES ('middle shelf', 'b');
INSERT INTO Locations (name, led)
VALUES ('bottom shelf', 'c');
INSERT INTO Locations (name, led)
VALUES ('left side of the top shelf', '1');
INSERT INTO Locations (name, led)
VALUES ('center of the top shelf', '2');
INSERT INTO Locations (name, led)
VALUES ('right side of the top shelf', '3');
INSERT INTO Locations (name, led)
VALUES ('left side of the middle shelf', '4');
INSERT INTO Locations (name, led)
VALUES ('center of the middle shelf', '5');
INSERT INTO Locations (name, led)
VALUES ('right side of the middle shelf', '6');
INSERT INTO Locations (name, led)
VALUES ('left side of the bottom shelf', '7');
INSERT INTO Locations (name, led)
VALUES ('center of the bottom shelf', '8');
INSERT INTO Locations (name, led)
VALUES ('right side of the bottom shelf', '9');
INSERT INTO Locations (name, led)
VALUES ('closet', '0');
INSERT INTO Items (name, locationId)
VALUES ('paper towel', 5);
INSERT INTO Items (name, locationId)
VALUES ('cup', 6);
INSERT INTO Items(name, locationId)
VALUES ('shirt', 7);
INSERT INTO Items(name, locationId)
VALUES ('stapler', 2);
INSERT INTO Items(name, locationId)
VALUES ('keys', 9);
INSERT INTO Items(name, locationId)
VALUES ('watch', 10);