table doctorant
This commit is contained in:
parent
3316e18cb8
commit
5cbb030d51
1 changed files with 9 additions and 0 deletions
|
@ -8,10 +8,19 @@ CREATE TABLE Personnel
|
|||
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(
|
||||
idScientique INT NOT NULL,
|
||||
idPersonnel INT NOT NULL,
|
||||
grade CHAR,
|
||||
FOREIGN KEY (idPersonnel) REFERENCES Personnel(idPersonnel),
|
||||
PRIMARY KEY(idPersonnel)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue