You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
217 B

DROP TABLE Voiture, Types, Client, Réservartion, Stock;
CREATE TABLE Réservartion (
n°permis numeric(12) CONSTRAINT CPRéservation PRIMARY KEY,
DateRes date NOT NULL CHECK (calories > 0),
PRIMARY KEY (nom)
);