correction

This commit is contained in:
Olougouna Axel 2022-12-07 09:02:19 +01:00
parent f104d14483
commit abe2f61eda

View file

@ -13,8 +13,8 @@ CREATE TABLE Personnel
CREATE TABLE Doctorant(
idDoctorant INT NOT NULL,
date_debut_these DATE,
date_soutenance DATE
FOREIGN KEY (id) REFERENCES Personnel(idPersonnel),
date_soutenance DATE,
FOREIGN KEY (idDoctorant) REFERENCES Personnel(idPersonnel),
PRIMARY KEY(idPersonnel)
);
@ -60,7 +60,7 @@ CREATE TABLE Etablissement(
adresse VARCHAR,
);
CREATE TABLE Enseignant_Chercheur
-- Nathan
CREATE TABLE Evenement(
idEvenement INT NOT NULL,
@ -104,7 +104,7 @@ CREATE TABLE Auteur_Externe (
PRIMARY KEY (idAuteur)
);
-- Nathan
-- NathanCREATE TABLE Enseignant_Chercheuration INT NOT NULL,--Corrigé Axel :)
CREATE TABLE Publication(
idPublication INT NOT NULL,
titre VARCHAR,
@ -125,7 +125,7 @@ CREATE TABLE Participe(
);
-- Ronan
CREATE TABLE Preside(
CREATE TABLE PreCREATE TABLE Enseignant_Chercheurside(
idCongres INT NOT NULL,
idScientifique INT NOT NULL,
FOREIGN KEY (idCongres) REFERENCES Congres(idCongres),
@ -142,7 +142,7 @@ CREATE TABLE Publie_Scientifique(
PRIMARY KEY (idPublication, idScientifique)
);
-- Ronan
-- RonanCREATE TABLE Enseignant_Chercheur
CREATE TABLE Publie_Doctorant(
idPublication INT NOT NULL,
idDoctorant INT NOT NULL,
@ -197,11 +197,5 @@ CREATE TABLE Encadrement (
PRIMARY KEY(idScientifique,idDoctorant),
);
--Yasmine
CREATE TABLE Etablissement (
nom char,
acronyme char,
adresse char,
PRIMARY KEY(idEtablissement),
);