Code has been added to clipboard!

Building SQL FOREIGN KEY

Example
CREATE TABLE Orders (
    OrderID int NOT NULL PRIMARY KEY,
    DeveloperID int FOREIGN KEY REFERENCES Developers(DeveloperID)
);