FOREIGN KEY constraints work in conjunction with PRIMARY KEY or UNIQUE key constraints to enforce referential integrity among specified tables.
(For details, search for "constraints" in SQL Enterprise Manager Help.)
Or
For example:
ALTER TABLE titles ADD CONSTRAINT FK_pub_id FOREIGN KEY (pub_id) REFERENCES publishers (pub_id)
adds a FOREIGN KEY constraint to the titles table on the pub_id column.
(For details, see the CREATE TABLE and ALTER TABLE statements in the Microsoft SQL Server Transact-SQL Reference.)