Answers for "ALTER TABLE to add the foreign key constraint."

SQL
4

add constraint fk

ALTER TABLE Orders
ADD CONSTRAINT FK_PersonOrder
FOREIGN KEY (PersonID) REFERENCES Persons(PersonID);
Posted by: Guest on September-02-2020

Code answers related to "ALTER TABLE to add the foreign key constraint."

Code answers related to "SQL"

Browse Popular Code Answers by Language