Tagged Questions
-4
votes
2answers
281 views
SQL Server equivalent to MySQL UNIQUE index?
In MySQL (5.1) I am able to create a Index on a field that is type UNIQUE. This ensures that the field contains only unique items.
Is there something equivalent to that feature in SQL Server 2008?
...