DRAG DROP
You create a table that contains the following script:
You need to prevent duplicate values in the EmployeeID field.
Which five code segments should you use?
To answer, move the appropriate code segments from the list of code segments to the
answer area and arrange them in the correct order.
Explanation:
Box 1: ALTER TABLE dbo.Customers
Box 2: ADD CONSTRAINT
Box 3:CK_EmplyeeID
Box 4: UNIQUE
Box 5: (EmplyeeID)
I agree with you.
See:
– https://msdn.microsoft.com/de-de/library/ms190024(v=sql.120).aspx
agree