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
|
CREATE TABLE Editeur(
EditeurId SMALLINT,
EditeurNom SMALLINT NOT NULL,
CONSTRAINT Editeur_PK PRIMARY KEY(EditeurId),
CONSTRAINT Editeur_AK UNIQUE(EditeurNom)
);
CREATE TABLE Format(
FormatId SMALLINT,
FormatLibelle VARCHAR(50) NOT NULL,
CONSTRAINT Format_PK PRIMARY KEY(FormatId),
CONSTRAINT Format_AK UNIQUE(FormatLibelle)
);
CREATE TABLE Contributeur(
ContributeurId SMALLINT,
ContributeurNom VARCHAR(50) NOT NULL,
CONSTRAINT Contributeur_PK PRIMARY KEY(ContributeurId),
CONSTRAINT Contributeur_AK UNIQUE(ContributeurNom)
);
CREATE TABLE EditionType(
EditionTypeId SMALLINT,
EditionTypeLibelle VARCHAR(50) NOT NULL,
CONSTRAINT EditionType_PK PRIMARY KEY(EditionTypeId),
CONSTRAINT EditionType_AK UNIQUE(EditionTypeLibelle)
);
CREATE TABLE ContributionType(
ContributionTypeId SMALLINT,
ContributionTypeLibelle VARCHAR(50) NOT NULL,
CONSTRAINT ContributionType_PK PRIMARY KEY(ContributionTypeId),
CONSTRAINT ContributionType_AK UNIQUE(ContributionTypeLibelle)
);
CREATE TABLE Ouvrage(
OuvrageId SMALLINT,
OuvrageTitre VARCHAR(50) NOT NULL,
CONSTRAINT Ouvrage_PK PRIMARY KEY(OuvrageId)
);
CREATE TABLE Edition(
OuvrageId SMALLINT,
EditionNumero INT,
EditeurId SMALLINT NOT NULL,
CONSTRAINT Edition_PK PRIMARY KEY(OuvrageId, EditionNumero),
CONSTRAINT Edition_Ouvrage_FK FOREIGN KEY(OuvrageId) REFERENCES Ouvrage(OuvrageId),
CONSTRAINT Edition_Editeur_FK FOREIGN KEY(EditeurId) REFERENCES Editeur(EditeurId)
);
CREATE TABLE EditionPossedee(
OuvrageId SMALLINT,
EditionNumero INT,
ISBN13 VARCHAR(13) NOT NULL,
EditionDateAchat DATE NOT NULL,
FormatId SMALLINT NOT NULL,
CONSTRAINT EditionPossedee_PK PRIMARY KEY(OuvrageId, EditionNumero),
CONSTRAINT EditionPossedee_AK UNIQUE(ISBN13),
CONSTRAINT EditionPossedee_Edition_FK FOREIGN KEY(OuvrageId, EditionNumero) REFERENCES Edition(OuvrageId, EditionNumero),
CONSTRAINT EditionPossedee_Format_FK FOREIGN KEY(FormatId) REFERENCES Format(FormatId)
);
CREATE TABLE EditionNonPossedee(
OuvrageId SMALLINT,
EditionNumero INT,
CONSTRAINT EditionNonPossedee_PK PRIMARY KEY(OuvrageId, EditionNumero),
CONSTRAINT EditionNonPossedee_Edition_FK FOREIGN KEY(OuvrageId, EditionNumero) REFERENCES Edition(OuvrageId, EditionNumero)
);
CREATE TABLE EdiEnfantDeParentEtranger(
OuvrageId_EnfantDeParentPasEnFrançais SMALLINT,
EditionNumero_EnfantDeParentPasEnFrançais INT,
CONSTRAINT EdiEnfantDeParentEtranger_PK PRIMARY KEY(OuvrageId_EnfantDeParentPasEnFrançais, EditionNumero_EnfantDeParentPasEnFrançais),
CONSTRAINT EdiEnfantDeParentEtranger_EditionPossedee_EnfantDeParentPasEnFrançais_FK FOREIGN KEY(OuvrageId_EnfantDeParentPasEnFrançais, EditionNumero_EnfantDeParentPasEnFrançais) REFERENCES EditionPossedee(OuvrageId, EditionNumero)
);
CREATE TABLE EdiEnfantFrançais(
OuvrageId_EnfantDeParentFrançais SMALLINT,
EditionNumero_EnfantDeParentFrançais INT,
OuvrageId_SourceGrandFormatFrançais SMALLINT NOT NULL,
EditionNumero_SourceGrandFormatFrançais INT NOT NULL,
CONSTRAINT EdiEnfantFrançais_PK PRIMARY KEY(OuvrageId_EnfantDeParentFrançais, EditionNumero_EnfantDeParentFrançais),
CONSTRAINT EdiEnfantFrançais_AK UNIQUE(OuvrageId_SourceGrandFormatFrançais, EditionNumero_SourceGrandFormatFrançais),
CONSTRAINT EdiEnfantFrançais_EditionPossedee_EnfantDeParentFrançais_FK FOREIGN KEY(OuvrageId_EnfantDeParentFrançais, EditionNumero_EnfantDeParentFrançais) REFERENCES EditionPossedee(OuvrageId, EditionNumero),
CONSTRAINT EdiEnfantFrançais_EditionPossedee_SourceGrandFormatFrançais_FK FOREIGN KEY(OuvrageId_SourceGrandFormatFrançais, EditionNumero_SourceGrandFormatFrançais) REFERENCES EditionPossedee(OuvrageId, EditionNumero)
);
CREATE TABLE Edi_Con(
OuvrageId SMALLINT,
EditionNumero INT,
ContributeurId SMALLINT,
ContributionTypeId SMALLINT,
CONSTRAINT Edi_Con_PK PRIMARY KEY(OuvrageId, EditionNumero, ContributeurId, ContributionTypeId),
CONSTRAINT Edi_Con_EditionPossedee_FK FOREIGN KEY(OuvrageId, EditionNumero) REFERENCES EditionPossedee(OuvrageId, EditionNumero),
CONSTRAINT Edi_Con_Contributeur_FK FOREIGN KEY(ContributeurId) REFERENCES Contributeur(ContributeurId),
CONSTRAINT Edi_Con_ContributionType_FK FOREIGN KEY(ContributionTypeId) REFERENCES ContributionType(ContributionTypeId)
);
CREATE TABLE Edi_Type(
OuvrageId SMALLINT,
EditionNumero INT,
EditeurId SMALLINT,
EditionTypeId SMALLINT,
AnneeParution INT NOT NULL,
CONSTRAINT Edi_Type_PK PRIMARY KEY(OuvrageId, EditionNumero, EditeurId, EditionTypeId),
CONSTRAINT Edi_Type_EditionPossedee_FK FOREIGN KEY(OuvrageId, EditionNumero) REFERENCES EditionPossedee(OuvrageId, EditionNumero),
CONSTRAINT Edi_Type_Editeur_FK FOREIGN KEY(EditeurId) REFERENCES Editeur(EditeurId),
CONSTRAINT Edi_Type_EditionType_FK FOREIGN KEY(EditionTypeId) REFERENCES EditionType(EditionTypeId)
);
CREATE TABLE Referencer(
OuvrageId SMALLINT,
EditionNumero INT,
OuvrageId_1 SMALLINT,
EditionNumero_1 INT,
CONSTRAINT Referencer_PK PRIMARY KEY(OuvrageId, EditionNumero, OuvrageId_1, EditionNumero_1),
CONSTRAINT Referencer_EditionPossedee_FK FOREIGN KEY(OuvrageId, EditionNumero) REFERENCES EditionPossedee(OuvrageId, EditionNumero),
CONSTRAINT Referencer_EditionNonPossedee_1_FK FOREIGN KEY(OuvrageId_1, EditionNumero_1) REFERENCES EditionNonPossedee(OuvrageId, EditionNumero)
); |
Partager