hjbh
This commit is contained in:
parent
3a60500222
commit
76256523d0
1 changed files with 14 additions and 11 deletions
|
@ -1,18 +1,21 @@
|
||||||
CREATE TABLE Personnel
|
CREATE TABLE Personnel
|
||||||
(
|
(
|
||||||
idPersonnel int CONSTRAINT UnePersonne PRIMARY KEY,
|
idPersonnel INT CONSTRAINT UnePersonne PRIMARY KEY,
|
||||||
nom char,
|
nom CHAR,
|
||||||
prenom char,
|
prenom CHAR,
|
||||||
date_de_naissance date,
|
date_de_naissance DATE,
|
||||||
adress char,
|
adress CHAR,
|
||||||
date_de_recrutement date,
|
date_de_recrutement DATE,
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE Publie_Doctorant(
|
CREATE
|
||||||
idPublication INT NOT NULL,
|
|
||||||
idDoctorant INT NOT NULL,
|
|
||||||
FOREIGN KEY (idPublication) REFERENCES Publication(idPublication),
|
CREATE TABLE Scientifique(
|
||||||
FOREIGN KEY (idDoctorant) REFERENCES Doctorant(idDoctorant)
|
idScientique INT NOT NULL,
|
||||||
|
idPersonnel INT NOT NULL,
|
||||||
|
grade CHAR,
|
||||||
|
PRIMARY KEY(idPersonnel)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE Publie_Externe(
|
CREATE TABLE Publie_Externe(
|
||||||
|
|
Loading…
Reference in a new issue