-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocations.sql
99 lines (99 loc) · 1.92 KB
/
locations.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
INSERT INTO locations(
location_id, street_address, postal_code,
city, state_province, country_id
)
VALUES
(
1000, '1297 Via Cola di Rie', '00989',
'Roma', NULL, 'IT'
),
(
1100, '93091 Calle della Testa',
'10934', 'Venice', NULL, 'IT'
),
(
1200, '2017 Shinjuku-ku', '1689',
'Tokyo', 'Tokyo Prefecture', 'JP'
),
(
1300, '9450 Kamiya-cho', '6823', 'Hiroshima',
NULL, 'JP'
),
(
1400, '2014 Jabberwocky Rd', '26192',
'Southlake', 'Texas', 'US'
),
(
1500, '2011 Interiors Blvd', '99236',
'South San Francisco', 'California',
'US'
),
(
1600, '2007 Zagora St', '50090', 'South Brunswick',
'New Jersey', 'US'
),
(
1700, '2004 Charade Rd', '98199',
'Seattle', 'Washington', 'US'
),
(
1800, '147 Spadina Ave', 'M5V 2L7',
'Toronto', 'Ontario', 'CA'
),
(
1900, '6092 Boxwood St', 'YSW 9T2',
'Whitehorse', 'Yukon', 'CA'
),
(
2000, '40-5-12 Laogianggen', '190518',
'Beijing', NULL, 'CN'
),
(
2100, '1298 Vileparle (E)', '490231',
'Bombay', 'Maharashtra', 'IN'
),
(
2200, '12-98 Victoria Street', '2901',
'Sydney', 'New South Wales', 'AU'
),
(
2300, '198 Clementi North', '540198',
'Singapore', NULL, 'SG'
),
(
2400, '8204 Arthur St', NULL, 'London',
NULL, 'UK'
),
(
2500, 'Magdalen Centre, The Oxford Science Park',
'OX9 9ZB', 'Oxford', 'Oxford', 'UK'
),
(
2600, '9702 Chester Road', '09629850293',
'Stretford', 'Manchester', 'UK'
),
(
2700, 'Schwanthalerstr. 7031', '80925',
'Munich', 'Bavaria', 'DE'
),
(
2800, 'Rua Frei Caneca 1360 ', '01307-002',
'Sao Paulo', 'Sao Paulo', 'BR'
),
(
2900, '20 Rue des Corps-Saints',
'1730', 'Geneva', 'Geneve', 'CH'
),
(
3000, 'Murtenstrasse 921', '3095',
'Bern', 'BE', 'CH'
),
(
3100, 'Pieter Breughelstraat 837',
'3029SK', 'Utrecht', 'Utrecht', 'NL'
),
(
3200, 'Mariano Escobedo 9991', '11932',
'Mexico City', 'Distrito Federal,',
'MX'
);