Ajouter une colonne avec une contrainte de clé étrangère SQL Server
ALTER TABLE one
ADD two_id INTEGER,
ADD CONSTRAINT FOREIGN KEY(two_id) REFERENCES two(id);
Poor Pelican