I have used this on my table
alter table Draftsmen
ADD constraint uc_draftsmen UNIQUE([DraftsmanCNICNo])
It works but it also doesn't allow NULL
values to be repeated since it's a unique constraint.
I want to allow NULL
to be repeated. How to do in this constraint?