Code has been added to clipboard!

Naming and Using SQL FOREIGN KEY With ALTER TABLE

Example
ALTER TABLE Orders
ADD CONSTRAINT FK_DeveloperOrder
FOREIGN KEY (DeveloperID) REFERENCES Developers(DeveloperID);