-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ebook.sql
267 lines (215 loc) · 8.92 KB
/
Ebook.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
DROP VIEW vDiffAuteurEcrire;
DROP VIEW vDiffLivreEcrire;
DROP VIEW vVedette;
DROP TABLE Ecrire;
DROP TABLE Reference;
DROP TABLE Telechargement;
DROP TABLE Aime;
DROP TABLE Abonnement;
DROP TABLE Don;
DROP TABLE UtilisateursEnregistres;
DROP TABLE Vedette;
DROP TABLE Livre;
DROP TABLE Citoyen;
DROP TABLE Nationalite;
DROP TABLE Auteur;
DROP TABLE Licence;
DROP TABLE Categorie;
CREATE TABLE Categorie (
nom VARCHAR(255) PRIMARY KEY,
description VARCHAR );
CREATE TABLE Licence (
id INTEGER PRIMARY KEY,
droitModification BOOLEAN NOT NULL ,
partageMemeCondition BOOLEAN NOT NULL ,
droitUtilisationCommercial BOOLEAN NOT NULL ,
UNIQUE (droitModification,partageMemeCondition,droitUtilisationCommercial)
);
CREATE TABLE Auteur (
nom VARCHAR(255),
prenom VARCHAR(255),
biographie VARCHAR(255) UNIQUE,
PRIMARY KEY (nom,prenom)
);
CREATE TABLE Nationalite (
pays VARCHAR(255) PRIMARY KEY
);
CREATE TABLE Citoyen (
pays VARCHAR(255),
auteurNom VARCHAR(255),
auteurPrenom VARCHAR(255),
FOREIGN KEY(pays) REFERENCES Nationalite(pays),
FOREIGN KEY(auteurNom, auteurPrenom) REFERENCES Auteur(nom, prenom),
PRIMARY KEY(pays, auteurNom, auteadminurPrenom)
);
CREATE TABLE Livre (
titre VARCHAR(255),
langue VARCHAR(255),
page INTEGER NOT NULL,
resume VARCHAR(255),
datePublication DATE,
categorie VARCHAR(255) NOT NULL,
licence INTEGER NOT NULL,
FOREIGN KEY(categorie) REFERENCES Categorie(nom),
FOREIGN KEY(licence) REFERENCES Licence(id),
PRIMARY KEY(titre, langue)
);
CREATE TABLE Vedette (
dateLimite DATE,
phraseAccroche VARCHAR(255),
titre VARCHAR(255),
langue VARCHAR(255),
PRIMARY KEY (DateLimite, PhraseAccroche, titre, langue),
FOREIGN KEY (titre, langue) REFERENCES Livre(titre, langue)
);
CREATE TABLE UtilisateursEnregistres (
email VARCHAR(255) PRIMARY KEY,
motDePasse VARCHAR(255) NOT NULL,
nom VARCHAR(255),
prenom VARCHAR(255) NOT NULL
);
CREATE TABLE Don (
montantDon FLOAT NOT NULL,
dateDon DATE,admin
utilisateur VARCHAR(255) REFERENCES UtilisateursEnregistres(email),
PRIMARY KEY (montantDon,dateDon,utilisateur),
CHECK (montantDon>0)
);
CREATE TABLE Abonnement (
auteurNom VARCHAR(255),
auteurPrenom VARCHAR(255),
utilisateur VARCHAR(255) REFERENCES UtilisateursEnregistres(email),
PRIMARY KEY (auteurNom,auteurPrenom,utilisateur),
FOREIGN KEY (auteurNom,auteurPrenom) REFERENCES Auteur(nom,prenom)
);
CREATE TABLE Aime (
utilisateur VARCHAR(255) REFERENCES UtilisateursEnregistres(email),
titre VARCHAR(255),
langue VARCHAR(255),
PRIMARY KEY(utilisateur,titre,langue),
FOREIGN KEY (titre,langue) REFERENCES Livre(titre,langue)
);
CREATE TABLE Telechargement (
utilisateur VARCHAR(255) REFERENCES UtilisateursEnregistres(email),
titre VARCHAR(255),
langue VARCHAR(255),
prixAchat FLOAT,
PRIMARY KEY(utilisateur,titre,langue),
FOREIGN KEY (titre,langue) REFERENCES Livre(titre,langue)
);
CREATE TABLE Reference (
auteurNom VARCHAR(255),
auteurPrenom VARCHAR(255),
titre VARCHAR(255),
langue VARCHAR(255),
FOREIGN KEY (auteurNom,auteurPrenom) REFERENCES Auteur(nom,prenom),
PRIMARY KEY (auteurNom,auteurPrenom,titre, langue),
FOREIGN KEY (titre,langue) REFERENCES Livre(titre,langue)
);
CREATE TABLE Ecrire (
auteurNom VARCHAR(255),
auteurPrenom VARCHAR(255),
titre VARCHAR(255),
langue VARCHAR(255),
PRIMARY KEY (auteurNom,auteurPrenom,titre,langue),
FOREIGN KEY(auteurNom,auteurPrenom) REFERENCES Auteur(nom,prenom),
FOREIGN KEY(titre,langue) REFERENCES Livre(titre,langue)
);
CREATE VIEW vVedette AS
SELECT L.titre, L.langue, L.datePublication, L.page, L.resume, L.categorie, L.licence,
V.dateLimite, V.phraseAccroche,
E.auteurNom,E.auteurPrenom
FROM Livre L,Vedette V, Ecrire E
WHERE (L.titre=V.titre) AND (L.langue=V.langue) AND V.dateLimite>DATE(NOW())
AND E.titre = L.titre AND V.langue=E.langue;
CREATE VIEW vDiffLivreEcrire AS
SELECT titre, langue FROM Livre
EXCEPT
SELECT titre, langue FROM Ecrire;
CREATE VIEW vDiffAuteurEcrire AS
SELECT nom, prenom FROM Auteur
EXCEPT
SELECT auteurNom, auteurPrenom FROM Ecrire;
INSERT INTO Categorie (nom, description)
VALUES ('Fiction','Aventure & Action Classiques Erotique Espionnage Fantastique Frisson & Terreur');
INSERT INTO Categorie (nom, description)
VALUES ('Bande Dessinée','Aventure Classiques Fantastique Heroïc Fantasy');
INSERT INTO Categorie (nom, description)
VALUES ('Culture','Arts généraux Architecture Cinéma Cinéma - Scénarios');
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (1,TRUE,FALSE,TRUE);
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (2,TRUE,TRUE,TRUE);
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (3,FALSE,FALSE,TRUE);
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (4,TRUE,FALSE,FALSE);
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (5,TRUE,TRUE,FALSE);
INSERT INTO Licence (id, droitModification, partageMemeCondition, droitUtilisationCommercial)
VALUES (6,FALSE,TRUE,FALSE);
INSERT INTO Auteur (nom, prenom, biographie)
VALUES ('Kevin','Integration', 'integre les étudiants en automne et au printemps');
INSERT INTO Auteur (nom, prenom )
VALUES ('Kevin','Olivera');
INSERT INTO Auteur (nom,prenom)
VALUES ('Dominique','DesMaths');
INSERT INTO Nationalite (pays)
VALUES ('France');
INSERT INTO Nationalite (pays)
VALUES ('UK');
INSERT INTO Nationalite (pays)
VALUES ('USA');
INSERT INTO Citoyen (pays, auteurNom, auteurPrenom)
VALUES ('France', 'Kevin', 'Integration');
INSERT INTO Citoyen (pays, auteurNom, auteurPrenom)
VALUES ('UK', 'Kevin', 'Olivera');
INSERT INTO Citoyen (pays, auteurNom, auteurPrenom)
VALUES ('USA', 'Dominique', 'DesMaths');
INSERT INTO Livre (titre, langue, page, resume, datePublication, categorie, licence)
VALUES ('plaquette de l integration', 'français', '30','bonne integ !', '2015-06-22', 'Culture', '1');
INSERT INTO Livre (titre, langue, page, categorie, licence)
VALUES ('maths for all', 'anglais', '351', 'Fiction', '5');
INSERT INTO Vedette (dateLimite, phraseAccroche, titre, langue)
VALUES ('2018-12-31', 'integ 4 ever', 'plaquette de l integration', 'français');
INSERT INTO Vedette (dateLimite, phraseAccroche, titre, langue)
VALUES ('2022-08-13', 'An amazing journey through maths !', 'maths for all', 'anglais');
INSERT INTO Vedette (SELECT L.titre, L.langue, V.phraseAccroche, L.datePublication, L.page, L.resume, L.categorie, L.licence,
V.dateLimite, V.phraseAccroche
FROM Livre L,Vedette V
WHERE (L.titre=V.titre) AND (L.langue=V.langue) AND V.dateLimite>DATE(NOW());dateLimite, phraseAccroche, titre, langue)
VALUES ('2018-01-31', 'integ 4 ever', 'plaquette de l integration', 'français');
INSERT INTO UtilisateursEnregistres (nom, prenom, motDePasse, email)
VALUES ('Kevin','Integration', 'pcqeudçjdé','cenestpasuneaddresse');
INSERT INTO UtilisateursEnregistres (nom, prenom, motDePasse, email)
VALUES ('Kevin','Integration', 'pcqeudçjdé','[email protected]');
INSERT INTO UtilisateursEnregistres (prenom, email , motDePasse)
VALUES ('anonyme','cettePersonneNaPasDAdresse','passe');
INSERT INTO Don (montantDon, dateDon, utilisateur)
VALUES ('5.20', '2015-04-11', '[email protected]');
INSERT INTO Don (montantDon, dateDon, utilisateur)
VALUES ('100.001', '2018-12-08', 'cettePersonneNaPasDAdresse');
INSERT INTO Abonnement (auteurNom, auteurPrenom, utilisateur)
VALUES ('Dominique', 'DesMaths', 'cenestpasuneaddresse');
INSERT INTO Abonnement (auteurNom, auteurPrenom, utilisateur)
VALUES ('Kevin', 'Olivera', '[email protected]');
INSERT INTO Aime (utilisateur, titre, langue)
VALUES ('[email protected]', 'maths for all', 'anglais');
INSERT INTO Aime (utilisateur, titre, langue)
VALUES ('cettePersonneNaPasDAdresse', 'plaquette de l integration', 'français');
INSERT INTO Telechargement (utilisateur, titre, langue, prixAchat)
VALUES ('[email protected]', 'plaquette de l integration', 'français', '5.30');
INSERT INTO Telechargement (utilisateur, titre, langue)
VALUES ('cettePersonneNaPasDAdresse', 'maths for all', 'anglais');
INSERT INTO Reference (auteurNom, auteurPrenom, titre, langue)
VALUES ('Kevin', 'Olivera', 'maths for all', 'anglais');
INSERT INTO Ecrire (auteurNom, auteurPrenom, titre, langue)
VALUES ('Kevin', 'Integration', 'plaquette de l integration', 'français');
INSERT INTO Ecrire (auteurNom, auteurPrenom, titre, langue)
VALUES ('Dominique', 'DesMaths', 'maths for all', 'anglais');
--select count(titre), auteurNom, auteurPrenom from ecrire group by auteurNom, auteurPrenom;
SELECT L.titre, L.langue, L.datePublication, L.page, L.resume, L.categorie, L.licence,
V.dateLimite, V.phraseAccroche,
E.auteurNom,E.auteurPrenom
FROM Livre L,Vedette V, Ecrire E
WHERE (L.titre=V.titre) AND (L.langue=V.langue) AND V.dateLimite>DATE(NOW()) AND E.titre = L.titre AND V.langue=E.langue;