Creating a Unique Constraint

Create a unique constraint to ensure no duplicate values are entered in specific columns that do not participate in a primary key. While both a unique constraint and a primary key enforce uniqueness, you should attach a unique constraint instead of a primary key constraint to a table if:

To create a unique constraint

  1. In your database diagram, select the table where you want to add a unique constraint.

  2. Right-click the table and select Properties.

  3. Choose the Indexes/Keys tab.

  4. Choose New. A system-assigned name appears in the Index name box.

  5. Under Column name, expand the list of columns and select the column that you want to attach the constraint to. To attach the constraint to multiple columns, select the additional columns in subsequent rows.

  6. Select the Create UNIQUE check box.

  7. Select the Constraint option.

The unique constraint is created in the database when you save the table or the diagram. If you want to control the sort order of key values and the action taken when duplicate keys exist, you should create a unique index instead of a unique constraint. For more information, see Creating a Unique Index.