How do I create a unique constraint on an existing table in SQL Server 2005?
I am looking for both the TSQL and how to do it in the Database Diagram.
|
How do I create a unique constraint on an existing table in SQL Server 2005? I am looking for both the TSQL and how to do it in the Database Diagram. |
|||
|
|
|
The SQL command is:
See the full syntax here. If you want to do it from a Database Diagram:
|
|||
|
|
|
In SQL Server Management Studio Express:
|
||||
|
|
|
|||
|
|
|
I also found you can do this via, the database diagrams. By right clicking the table and selecting Indexes/Keys... Click the 'Add' button, and change the columns to the column(s) you wish make unique. Change Is Unique to Yes. Click close and save the diagram, and it will add it to the table. |
|||
|
|
|
Warning: Only one null row can be in the column you've set to be unique. You can do this with a filtered index in SQL 2008:
See Field value must be unique unless it is NULL for a range of answers. |
||||
|
|
|
You are looking for something like the following
|
|||
|
|
|
In the management studio diagram choose the table, right click to add new column if desired, right-click on the column and choose "Check Constraints", there you can add one. |
|||
|
|