[Racine des codes] [Page précédente]

sql - alter table

/SQL/sql - alter table.sql
alter table contact add pays_id_nationnalite numeric(18,0)
-- alter table contact drop column pays_id_nationnalite
alter table contact add foreign key (pays_id_nationnalite) references pays(pays_id)
[edit]