how do I make a composite key with SQL Server Management Studio?
I want two INT columns to form the identity (unique) for a table
|
|
how do I make a composite key with SQL Server Management Studio? I want two INT columns to form the identity (unique) for a table
|
|||
|
|
|
|
In design mode (right click table select modify) highlight both columns right click and choose set primary key |
||
|
|
|
|
Highlight both rows in the table design view and click on the key icon, they will now be a composite primary key. I'm not sure of your question, but only one column per table may be an IDENTITY column, not both. |
|||
|
|
|
|
|
||
|
|
|
|
here is some code to do it:
I added the constraint as a separate statement because I presume your table has already been created. |
||
|
|
|
|
||