-
Notifications
You must be signed in to change notification settings - Fork 0
/
DMLPOP.sql
354 lines (324 loc) · 21.4 KB
/
DMLPOP.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
/* Popolamento Utente (10) */
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Alessandro','M','30-07-2000','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Luca','M','26-09-1996','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Giada','F','04-02-1980','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Carlo','M','15-12-1995','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Roberta','F','22-08-1976','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Paolo','M','10-6-1991','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Rebecca','F','17-10-1965','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Stefano','M','19-11-1994','Visitatore');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Beppe','M','06-03-1985','Dipendente');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Elena','F','18-01-1990','Dipendente');
/* Popolamento Artista (10) */
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Leonardo','Vinci','1452-04-15','1519-05-02','Rinascimento','High Renaissance');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Michelangelo','Buonarroti','1475-03-06','1564-02-18','Rinascimento','High Renaissance');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Raffaello','Sanzio','1483-04-06','1520-04-06','Rinascimento','High Renaissance');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Sandro','Botticelli','1445-03-01','1510-05-17','Rinascimento','Early Renaissance');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Tiziano','Vecellio','1488-08-27','1576-08-27','Rinascimento','High Renaissance');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Caravaggio','Merisi','1571-09-29','1610-07-18','Barocco','Barocco');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Gian Lorenzo','Bernini','1598-12-07','1680-11-28','Barocco','Barocco');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Rembrandt','Harmenszoon van Rijn','1606-07-15','1669-10-04','Barocco Olandese','Barocco Olandese');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Johannes Vermeer','Delft','1632-10-31','1675-12-15','Barocco Olandese','Barocco Olandese');
INSERT INTO Artista(NomeA,CognomeA,Nascita,Morte,Stile,Movimento)
VALUES('Diego Velázquez','Rodríguez','1599-06-06','1660-08-06','Barocco Spagnolo','Barocco Spagnolo');
/* Popolamento Opera (10) */
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(1,'Leonardo','Vinci','La Gioconda','Ritratto di una donna',1503,'Olio su tavola','Legno');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(2,'Michelangelo','Buonarroti','Creazione di Adamo','Affresco sulla volta della Cappella Sistina',1511,'Affresco','Intonaco');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(3,'Raffaello','Sanzio','Scuola di Atene','Affresco nella Stanza della Segnatura',1511,'Affresco','Intonaco');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(4,'Sandro','Botticelli','Nascita di Venere','Dipinto su tela',1486,'Tempera su tela','Tela');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(5,'Tiziano','Vecellio','Amor Sacro e Amor Profano','Dipinto su tela',1514,'Olio su tela','Tela');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(6,'Caravaggio','Merisi','Cena in Emmaus','Dipinto su tela',1601,'Olio su tela','Tela');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(7,'Gian Lorenzo','Bernini','Estasi di Santa Teresa','Scultura in marmo',1652,'Marmo','Marmo');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(8,'Rembrandt','Harmenszoon van Rijn','La ronda di notte','Dipinto su tela',1642,'Olio su tela','Tela');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(9,'Johannes Vermeer','Delft','Ragazza con orecchino','Dipinto su tela',1665,'Olio su tela','Tela');
INSERT INTO Opera(Cod,NomeArt,CognomeArt,Titolo_O,Descrizione,Anno,Tecniche,Materiale)
VALUES(10,'Diego Velázquez','Rodríguez','Las Meninas','Dipinto su tela',1656,'Olio su tela','Tela');
/* Popolamento Storia (6) */
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(1,'[email protected]','La bellazza','Particolarmente interessante e molto gioioso','#sole','10:34:09','10:35:06','10:35:06'::TIME-'10:34:09'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(2,'[email protected]','Il mare colpisce sempre','Senza fiato','#mare','17:10:00','17:11:25','17:11:25'::TIME-'17:10:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(3,'[email protected]','La meravigliosa arte italiana','Pezzi importanti della storia','#cultura','16:25:10','16:27:30','16:27:30'::TIME-'16:25:10'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(4,'[email protected]','Il palazzo del gusto','Opere particolarmente sensibili e tristi','#mondo','11:10:00','11:12:00','11:12:00'::TIME-'11:10:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(5,'[email protected]','La natura incontaminata','La forza della natura rappresentata','#natura','11:50:15','11:51:45','11:51:45'::TIME-'11:50:15'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(6,'[email protected]','La perfezione','Opere dalle forme particolarmente geometricge','#perfette','13:15:00','13:16:00','13:16:00'::TIME-'13:15:00'::TIME);
/* Popolamento Annotazione (10) */
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',2,'#stupendo','gioia','Opera molto accattivante');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',5,'#spaventoso','paura','Opera molto introspettiva e per certi versi paurosa');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',2,'#meraviglia','fiducia','Opera che fa ben sperare');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',2,'#sorprendente','sorpresa','Opera molto sorprendente');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',3,'#disgustoso','disgusto','Suscita disgusto negli occhi di chi lo guarda');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',4,'#rabbioso','rabbia','Opera fa sentire la rabbia dell artista');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',7,'#triste','tristezza','Trasuda tristezza');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',10,'#bello#chiaro','sorpresa','Opera accessa');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',7,'#devastante','tristezza','Opera molto triste');
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',6,'#incredibile','sorpresa','Molto affascinante');
/* Popolamento Domanda (6) */
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(1,'il mare','la luce','bene');
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(2,'casa','il buio','male');
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(5,'il vuoto','la nebbia','impaurita');
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(7,'la tempesta','ombra','smarrita');
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(8,'il sole','il bello','accolto');
INSERT INTO Domanda(Annotazione,Mi_ricorda,Mi_fa_pensare_a,Mi_fa_sentire)
VALUES(9,'le tenebre','la morte','spaventato');
/* Popolamento Op-Sto (16) */
INSERT INTO Op_Sto(Sto,Op) VALUES(1,1);
INSERT INTO Op_Sto(Sto,Op) VALUES(1,2);
INSERT INTO Op_Sto(Sto,Op) VALUES(1,3);
INSERT INTO Op_Sto(Sto,Op) VALUES(2,2);
INSERT INTO Op_Sto(Sto,Op) VALUES(2,3);
INSERT INTO Op_Sto(Sto,Op) VALUES(2,4);
INSERT INTO Op_Sto(Sto,Op) VALUES(3,4);
INSERT INTO Op_Sto(Sto,Op) VALUES(3,5);
INSERT INTO Op_Sto(Sto,Op) VALUES(4,5);
INSERT INTO Op_Sto(Sto,Op) VALUES(4,8);
INSERT INTO Op_Sto(Sto,Op) VALUES(4,9);
INSERT INTO Op_Sto(Sto,Op) VALUES(5,1);
INSERT INTO Op_Sto(Sto,Op) VALUES(5,9);
INSERT INTO Op_Sto(Sto,Op) VALUES(6,3);
INSERT INTO Op_Sto(Sto,Op) VALUES(6,5);
INSERT INTO Op_Sto(Sto,Op) VALUES(6,4);
/* Popolamento Ranking (6) */
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',1,6,'Non mi convince la scelta delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',4,8,'Storia molto coerente');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',2,9,'Ottimo mix di opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',5,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',2,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',5,4,'Per niente interessante');
/* Popolamento Raccomandazioni (9) */
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(1,3,'simile');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(1,2,'uguale');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(1,4,'opposta');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(2,6,'opposta');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(2,3,'uguale');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(3,4,'simile');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(3,5,'uguale');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(3,6,'opposta');
INSERT INTO Raccomandazioni(ID_S1,ID_S2,Relazione)
VALUES(6,1,'uguale');
/* Popolamento Gruppo (2) */
INSERT INTO Gruppo(Supervisore) VALUES('[email protected]');
INSERT INTO Gruppo(Supervisore) VALUES('[email protected]');
/* Popolamento Gr_Afferenza (8) */
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',1);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',1);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',1);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',1);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',2);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',2);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',2);
INSERT INTO Gr_Afferenza(Utente_Gr,Gruppo) VALUES('[email protected]',2);
/* Query 2
Aggiunta di Storie fatte da utenti tra 35 e 50 anni per verifica query
*/
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(7,'[email protected]','La Morte','Molto triste e opprimente','#death','12:08:10','12:09:00','12:09:00'::TIME-'12:08:10'::TIME);
INSERT INTO Op_Sto(Sto,Op) VALUES(7,3);
INSERT INTO Op_Sto(Sto,Op) VALUES(7,8);
INSERT INTO Op_Sto(Sto,Op) VALUES(7,10);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(8,'[email protected]','La Gioia','La gioia di vivere','#gioia','11:41:00','11:42:30','11:42:30'::TIME-'11:41:00'::TIME);
INSERT INTO Op_Sto(Sto,Op) VALUES(8,2);
INSERT INTO Op_Sto(Sto,Op) VALUES(8,6);
INSERT INTO Op_Sto(Sto,Op) VALUES(8,9);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(9,'[email protected]','La felicità','La brezza della felicità cammina','#happiness','12:10:10','12:11:00','12:11:00'::TIME-'12:10:10'::TIME);
INSERT INTO Op_Sto(Sto,Op) VALUES(9,1);
INSERT INTO Op_Sto(Sto,Op) VALUES(9,5);
INSERT INTO Op_Sto(Sto,Op) VALUES(9,7);
/* Query 6
Aggiunta di Storie ad utenti per verificare utenti con >= di 2 storie
*/
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(10,'[email protected]','Il fiato della notte','Notturno','#darkness','18:11:12','18:12:25','18:12:25'::TIME-'18:11:12'::TIME);
INSERT INTO Op_Sto(Sto,Op) VALUES(10,3);
INSERT INTO Op_Sto(Sto,Op) VALUES(10,6);
INSERT INTO Op_Sto(Sto,Op) VALUES(10,10);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(11,'[email protected]','Orgoglio','Fiero e impavido','#greatness','13:08:10','13:09:00','13:09:00'::TIME-'13:08:10'::TIME);
INSERT INTO Op_Sto(Sto,Op) VALUES(11,5);
INSERT INTO Op_Sto(Sto,Op) VALUES(11,9);
INSERT INTO Op_Sto(Sto,Op) VALUES(11,2);
/* Query 7:
aggiunta di 4 storie associate a 2 dipendenti, e aggiunta dei relativi
commenti di altri utenti
*/
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(12,'[email protected]','La distruzione','Opere distruttive','#distruzione','14:15:00','14:16:00','14:16:00'::TIME-'14:15:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(13,'[email protected]','La merendera','Molto invitanti e speciali','#special','13:18:00','13:20:00','13:20:00'::TIME-'13:18:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(14,'[email protected]','Il notturno','Ricordano la notte','#darkness','17:17:00','17:18:00','17:18:00'::TIME-'17:17:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(15,'[email protected]','L''eresia','Opere prive di morale','#shame','13:22:00','13:24:00','13:24:00'::TIME-'13:22:00'::TIME);
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',12,6,'Non mi convince la scelta delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',13,8,'Storia molto coerente');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',12,9,'Ottimo mix di opere');
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(16,'[email protected]','L armistizio','Opere che tramano la guerra','#war','14:29:00','14:29:45','14:29:45'::TIME-'14:29:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(17,'[email protected]','L ascesa','Opere ascendenti','#ascesa','13:15:00','13:16:00','13:16:00'::TIME-'13:15:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(18,'[email protected]','La mamma','Opere materne','#mother','16:18:00','16:20:00','16:20:00'::TIME-'16:18:00'::TIME);
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',16,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',17,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',17,4,'Per niente interessante');
/* Query8:
Aggiunta storia a visitatori tra 25 e 40 anni e commenti da parte di dipendenti
*/
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(19,'[email protected]','L armistizio','Opere che tramano la guerra','#war','14:29:00','14:29:45','14:29:45'::TIME-'14:29:00'::TIME);
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',3,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',3,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',19,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',19,10,'Particolarmente interessante');
/* Query 9:
aggiunta ranking da parte di un dipendente a un visitatore tra 20 e 35 anni
così da avere 4 storie votate per il dipendente
*/
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',4,10,'Particolarmente emozionante');
/* Query 11:
aggiunta di utenti 'fragili', aggiunta di loro storie e commenti da parte di
dipendenti
*/
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Giorgio','M','18-07-1994','Fragile');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Mattia','M','25-08-1992','Fragile');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Luca','M','22-09-1998 ','Fragile');
INSERT INTO Utente(Email,Nome,Genere,Nascita,Tipo)
VALUES('[email protected]','Matteo','M','30-09-1998 ','Fragile');
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(20,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(21,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(22,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(23,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',21,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',22,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',23,7,'Ottima differenziazione delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',21,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',22,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',23,10,'Particolarmente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,6,'Non mi convince la scelta delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,8,'Storia molto coerente');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,9,'Ottimo mix di opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,4,'Per niente interessante');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,6,'Non mi convince la scelta delle opere');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,8,'Storia molto coerente');
INSERT INTO Ranking(Utente_R,Sto_R,Voto,Commento_R)
VALUES('[email protected]',20,9,'Ottimo mix di opere');
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(33,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(25,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(26,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(27,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(28,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(29,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(30,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(31,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
INSERT INTO Storia(ID_S,Utente_S,Titolo_S,Commento_S,Hashtag_S,Inizio,Fine,Durata)
VALUES(32,'[email protected]','Lo Vesuvio','Il calore di napoli','#naples','14:32:00','14:33:45','14:33:45'::TIME-'14:32:00'::TIME);
/*Query 24:
aggiunta di un annotazione con la stessa emoji di un'altra
*/
INSERT INTO Annotazione(Utente_A,Cod_Op,Hashtag_A,Emoji,Commento_A)
VALUES('[email protected]',2,'#stupendo','gioia','Opera molto molto');