table doctorant

This commit is contained in:
Olougouna Axel 2022-12-07 08:27:57 +01:00
parent 3316e18cb8
commit 5cbb030d51

View file

@ -8,10 +8,19 @@ CREATE TABLE Personnel
date_de_recrutement DATE, date_de_recrutement DATE,
); );
CREATE TABLE Doctorant(
idDoctorant INT NOT NULL,
date_debut_these DATE,
date_soutenance DATE
FOREIGN KEY (idPersonnel) REFERENCES Personnel(idPersonnel),
PRIMARY KEY(idPersonnel)
);
CREATE TABLE Scientifique( CREATE TABLE Scientifique(
idScientique INT NOT NULL, idScientique INT NOT NULL,
idPersonnel INT NOT NULL, idPersonnel INT NOT NULL,
grade CHAR, grade CHAR,
FOREIGN KEY (idPersonnel) REFERENCES Personnel(idPersonnel),
PRIMARY KEY(idPersonnel) PRIMARY KEY(idPersonnel)
); );