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
create table my_table ( id_part1 int not null, id_part2 int not null, primary key (id_part1, id_part2) )