i want to create unique constraints in table for 7 columns, so when someone want insert data in this table this colums together are unique. In oracle this is very simple, but here ....
I can do this by sql code:
CREATE TABLE Example
(Col1 int NOT NULL,
Col2 int NOT NULL,
CONSTRAINT CK_Col1_Col2 UNIQUE NONCLUSTERED (Col1, Col2)
)
Anyone know how to make this in sql management studio?