source: assets/insert.sql@ 0791611

Last change on this file since 0791611 was 0791611, checked in by sstalevska <sara.stalevska@…>, 21 months ago

Push the entire project.

  • Property mode set to 100644
File size: 8.6 KB
Line 
1INSERT INTO CATEGORY (CATEGORY_NAME)
2VALUES ('Restaurant'),
3 ('Shopping'),
4 ('Nightlife'),
5 ('Auto repair');
6
7
8INSERT INTO SERVICE (SERVICE_NAME,
9 CATEGORY_ID)
10VALUES ('Thai food', 1),
11 ('Chinese food', 1),
12 ('Comfort food', 1),
13 ('Macedonian traditional', 1),
14 ('Mediteranian', 1),
15 ('Seafood', 1);
16
17
18INSERT INTO SERVICE (SERVICE_NAME,
19 CATEGORY_ID)
20VALUES ('Music venues', 3),
21 ('DJ', 3),
22 ('Live music', 3),
23 ('Dance clubs', 3),
24 ('Lounges', 3),
25 ('Performing arts', 3),
26 ('Coctail bars', 3);
27
28
29INSERT INTO SERVICE (SERVICE_NAME,
30 CATEGORY_ID)
31VALUES ('Tires', 4),
32 ('Oil change stations', 4),
33 ('Body shop', 4),
34 ('Auto parts and supplies', 4),
35 ('Car rental', 4);
36
37
38INSERT INTO SERVICE (SERVICE_NAME,
39 CATEGORY_ID)
40VALUES ('Sport equipment', 2),
41 ('Womens clothing', 2),
42 ('Mens clothing', 2),
43 ('Supermarket', 2),
44 ('Home decor', 2),
45 ('Cosmetics and beauty supply', 2),
46 ('Stationary', 2),
47 ('Furniture', 2);
48
49
50INSERT INTO BUSINESS (BUSINESS_NAME,
51 BUSINESS_PHONE,
52 BUSINESS_DESCR,
53 BUSINESS_HOURS,
54 CATEGORY_ID)
55VALUES ('Sport M', '02-222-3339', 'Best pieces of sport eqipment from the brands Adidas, Nike, Puma, Salomon, 4F etc.', 'Pon-Sab 09-21', 2),
56 ('Royal View', '046-555-666', 'While dining, enjoy the view of the ancient old town, the picturesque mountain tops and the ever so gracious Ohrid Lake that has enchanted many for centuries.', 'Pon-Ned 08-00', 1);
57
58
59INSERT INTO BUSINESS (BUSINESS_NAME,
60 BUSINESS_PHONE,
61 BUSINESS_DESCR,
62 BUSINESS_HOURS,
63 CATEGORY_ID)
64VALUES ('Tino', '046-898-969', 'Dine-in with amazing lake view and pleasant personell.', 'Pon-Sab 09-00', 1),
65 ('Su', '046-522-126', 'Hotel with a restaurant on the third floor, offering dining at a cozy atmosphere, overlooking the Ohrid lake.', 'Pon-Ned 08-00', 1);
66
67
68INSERT INTO BUSINESS (BUSINESS_NAME,
69 BUSINESS_PHONE,
70 BUSINESS_DESCR,
71 BUSINESS_HOURS,
72 CATEGORY_ID)
73VALUES ('Skopje City Mall', '02-232-232', 'Local staple for shopping & dining, with multiple levels of name-brand stores, cafes & a cinema.', 'Pon-Ned 10-22', 2),
74 ('Akademska kniga', '02-312-5510', 'Primary business of our company is to offer foreighn professional literature from well-known world publishers and renowned university printing houses. At the moment Akademska Kniga offers more than 70.000 different book titles with the greatest prices in the region.', 'Pon-Ned 08-00', 2);
75
76
77INSERT INTO BUSINESS (BUSINESS_NAME,
78 BUSINESS_PHONE,
79 BUSINESS_DESCR,
80 BUSINESS_HOURS,
81 CATEGORY_ID)
82VALUES ('Stanica26', '070-111-111', 'Stanica 26 is one of the main nightclubs where locals go to have fun. They promise good time for everyone and quality music.', 'Chet-Ned 00-05', 3),
83 ('Epicentar', '02-321-4061', 'Electronic music venue with local DJ performances.', 'Chet-Sab 00-05', 3),
84 ('Minus Eden', '02-333-333', 'Minus Eden is an alternative night club well known for its techno and house parties.', 'Chet-Sab 00-05', 3);
85
86
87INSERT INTO BUSINESS (BUSINESS_NAME,
88 BUSINESS_PHONE,
89 BUSINESS_DESCR,
90 BUSINESS_HOURS,
91 CATEGORY_ID)
92VALUES ('Diagnostic Auto Service Kire', '076-555-666', 'Auto machine shop in Skopje', 'Pon-Pet 10-17', 4),
93 ('AMSM Avto Moto Sojuz na Makedonija', '02-355-9999', 'We are modern organization with long tradition. We strive for uncompromising quality for all our services, through continuative implementation of the latest technologies and the best business practices, while constantly investing in development and advancement of our employees. We strive to rise through constant creating of additional value for our members and customers.', 'Pon-Sre 12-18', 4),
94 ('BMW Repair Toni', '02-333-1111', 'Quality service for all types of cars, with BMW speciality.', 'Pon-Ned 12-17', 4);
95
96
97INSERT INTO BUSINESS_SERVICE(BUSINESS_ID, SERVICE_ID)
98VALUES (1, 19),
99 (1, 20),
100 (1, 21);
101
102
103INSERT INTO SERVICE (SERVICE_NAME, CATEGORY_ID)
104VALUES ('Bookstore', 2);
105
106
107INSERT INTO BUSINESS_SERVICE(BUSINESS_ID, SERVICE_ID)
108VALUES (2, 2),
109 (2,3),
110 (2,5);
111
112
113INSERT INTO BUSINESS_SERVICE(BUSINESS_ID, SERVICE_ID)
114VALUES (3, 1),
115 (3, 3),
116 (3, 4),
117 (3, 5);
118
119
120INSERT INTO BUSINESS_SERVICE(BUSINESS_ID, SERVICE_ID)
121VALUES (4, 1),
122 (4, 3),
123 (4, 5),
124 (4, 11),
125 (5, 12),
126 (5,13);
127
128
129INSERT INTO BUSINESS_SERVICE(BUSINESS_ID, SERVICE_ID)
130VALUES (5, 19),
131 (5, 20),
132 (5, 21),
133 (5, 22),
134 (5, 23),
135 (5, 24),
136 (5, 25);
137
138
139INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
140 SERVICE_ID)
141VALUES (6, 25),
142 (6, 27);
143
144
145INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
146 SERVICE_ID)
147VALUES (7, 9),
148 (7, 10),
149 (7, 12);
150
151
152INSERT INTO SERVICE (SERVICE_NAME,
153 CATEGORY_ID)
154VALUES ('BMW repair', 4);
155
156
157INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
158 SERVICE_ID)
159VALUES (8, 12);
160
161
162INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
163 SERVICE_ID)
164VALUES (8, 7),
165 (8, 8),
166 (8, 9),
167 (8, 10);
168
169
170INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
171 SERVICE_ID)
172VALUES (9, 7),
173 (9,8),
174 (9,10);
175
176
177INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
178 SERVICE_ID)
179VALUES (10, 16),
180 (10, 17),
181 (10, 18),
182 (10, 14);
183
184
185INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
186 SERVICE_ID)
187VALUES (11, 14),
188 (11, 15),
189 (11, 16);
190
191
192INSERT INTO BUSINESS_SERVICE(BUSINESS_ID,
193 SERVICE_ID)
194VALUES (12, 14),
195 (12, 15),
196 (12, 16),
197 (12, 17),
198 (12, 28);
199
200
201INSERT INTO REVIEWER (REVIEWER_NAME,
202 REVIEWER_VERIFIED,
203 REVIEWER_EMAIL,
204 REVIEWER_PASSWORD)
205VALUES ('Sara S', TRUE,'sara.stalevska@finki.ukim.mk', 'sarasara'),
206 ('Spase S',FALSE, 'spase.spaseski@yahoo.com', 'spasespase'),
207 ('Martin M',FALSE, 'martin.martinoski@hotmail.com', 'martinmartin'),
208 ('Martina M',FALSE, 'martinam@gmail.com', 'martinamartina'),
209 ('Goce G',FALSE,'gocegoceski@gmail.com', 'gocegoce'),
210 ('Katerina K', FALSE,'katerinak@students.finki.ukim.mk', 'katekate'),
211 ('Klimentina L',TRUE, 'klimentinal123@gmail.com', 'klimentinal');
212
213
214INSERT INTO ADDRESS (ADDRESS_STREET,
215 ADDRESS_POSTAL_CODE,
216 ADDRESS_CITY,
217 BUSINESS_ID)
218VALUES ('Ljubljanska 4 ', '1000', 'Skopje', 1) ,
219 ('Teodosij Gologanov 77', '1000', 'Skopje',2) ,
220 ('Porta Bunjakovec', '1000', 'Skopje',2) ,
221 ('Jordan Mijalkov 26', '1000', 'Skopje', 3),
222 ('Boulevard Saint Clement of Ohrid 60a', '1000', 'Skopje', 4) ,
223 ('Branislav Nushikj', '1000', 'Skopje', 5) ,
224 ('Radishanska 159-а', '1000', 'Skopje', 6) ,
225 ('Grigor Prlichev 87', '7000', 'Kichevo', 7) ,
226 ('Jane Sandanski 66', '6000', 'Ohrid', 7) ,
227 ('Petar Pop Arsov 12', '4000', 'Bitola', 7) ,
228 ('Mihail Chakov 4', '1000', 'Skopje', 8) ,
229 ('Pitu Guli 55', '1000', 'Skopje',9) ,
230 ('Goce Delchev 66', '3550', 'Kavadarci',9) ,
231 ('Dimo Hadzhi Dimov 88', '2000', 'Kumanovo', 9),
232 ('Abas Emin 56', '6000', 'Ohrid', 10) ,
233 ('Pitu Guli 89', '6000', 'Ohrid', 11) ,
234 ('Kej Makedonija 88', '6000', 'Ohrid', 12) ,
235 ('Jane Sandanski 74', '6000', 'Ohrid', 12);
236
237
238INSERT INTO REVIEW (REVIEW_TITLE,
239 REVIEW_TEXT,
240 REVIEW_STARS,
241 BUSINESS_ID,
242 ADDRESS_ID,
243 REVIEWER_ID)
244VALUES ('Not satisfied','Small selection of products at a very high price. At least the staff was nice. ', 4, 1, 1, 2),
245 ('Expensive','Good brands and nice outfits, but very expensive', 2, 1,1, 6),
246 ('Superb','Good brands and nice selection.', 2, 1,1, 1),
247 ('Staff is nice','Variety of quality books offered, very satisfied with the customer service, the staff is helpful and informed.', 5, 6,7, 1),
248 ('Quality time', 'Very nice staff and quality time spent there with friends and coffee.', 5, 6,7, 1),
249 ('Good nightclub','Great nightclub, but unfriendly staff.', 3, 7, 9, 1),
250 ('Extra','The best one ', 5, 7, 10, 1),
251 ('Amazing','Amazing parties, but not sure if going there again because of how rude the staff was and how expensive and mediocre the drinks were', 2, 7,8, 7),
252 ('Excelent','Excelent selection of DJs, best party place in Skopje', 5, 8,11, 3),
253 ('Crowd','Good parties but too crowded. They should let in less people at a time.', 3, 8,11, 5),
254 ('Expensive','Expensive drinks and terrible alcohol, rude staff. ', 1, 9, 12, 4),
255 ('Rude staff','One of the few nightclus of this kind, but very rude staff and very expensive, from entry fee to drinks.', 2, 9, 13, 1),
256 ('Amazingly fun','One of the best ones', 5, 9, 14, 1),
257 ('Pricey','Nice and helpful staff, got the job done, but a little too pricey. ', 4, 10,15, 5),
258 ('Average','Staff is neither helpful nor rude, service is somewhat satisfactory.', 3, 12,17, 5),
259 ('Satisfied','Staff was nice. It got the job done.', 5, 12,18, 5),
260 ('Slow','They finished the job well, but I had to wait a lot more than I wanted to.', 2, 12,18, 5),
261 ('Excelent service','Very nice personnel, excellent service at a good price', 5, 11,16, 6),
262 ('Affordable food','Nice staff. Good food, but not the best. Affordable. ', 4, 3,4, 6),
263 ('Slow, but good food','Slow service, but good food at a reasonable price. ',4, 2, 2, 7),
264 ('Average','Adequate service and food ', 3, 2, 3, 2),
265 ('Good but not amazing','Great service but very very expensive.', 3, 4, 5, 7),
266 ('Amazing and worth it','Amazingly experienced handyman, worth the cost.', 5,4, 5, 7);
Note: See TracBrowser for help on using the repository browser.