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 myTable ( Column1 int not null, Column2 int not null ) GO ALTER TABLE myTable ADD PRIMARY KEY (Column1,Column2) GO