vote up 2 vote down star

I have two tables one has a three column composite key. The other needs to reference this composite key.

What is the syntax for creating a foreign key which references multiple columns.

I tried googleing, but I couldn't find it.

flag

1 Answer

vote up 6 vote down check
FOREIGN KEY (col1, col2, col3) REFERENCES ParentTable (colA, colB, colC)

Look under "<table_constraint>" in the online docs for Microsoft SQL Server CREATE TABLE.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.