vote up 0 vote down star

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

flag

41% accept rate

5 Answers

vote up 2 vote down

In design mode (right click table select modify) highlight both columns right click and choose set primary key

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down
create table my_table (
    id_part1 int not null,
    id_part2 int not null,
    primary key (id_part1, id_part2)
)
link|flag
vote up 2 vote down

here is some code to do it:

-- Sample Table
create table myTable 
(
    Column1 int not null,
    Column2 int not null
)
GO

-- Add Constraint
ALTER TABLE myTable
    ADD CONSTRAINT pk_myConstraint PRIMARY KEY (Column1,Column2)
GO

I added the constraint as a separate statement because I presume your table has already been created.

link|flag
I guess this answer fits since you can run this within Query window of SSMS... ;) – Sung Meister Oct 13 at 0:07
vote up 4 vote down

Set composite key

  1. Open the design table tab
  2. Highlight your two INT fields
  3. Right click -> Set primary key
link|flag
1  
I wish I could up-vote twice - the image is a nice touch. – CJM Oct 9 at 20:47
Thanks a lot, appreciate the comment – Cory Oct 11 at 1:40

Your Answer

Get an OpenID
or

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