4
Création de table :
syntaxe générale (simplifiée)
CREATE TABLE table (
champ1type [(taille)] [NOT NULL]
[,champ2type [(taille)] [NOT NULL]]*
[,CONSTRAINT nom PRIMARY KEY (champi[, champj[, …]]) |
UNIQUE (champk [, champl[, …]]) |
FOREIGN KEY (champm [, champn[, …]])
REFERENCES tableE[(champE1[,champE2[, …]])]]*
)
La création d’une table est prévue en SQL via l’instruction CREATE TABLE.