I am very confused in difference between unique key and primary key, and unique key constraint and primary key constraint in SQL Server.
Can I define more than 1 primary key in my table?
Again I am not getting how to set unique key in my table and what is the practical use of it. Second thing, I found statement like this on internet
A PRIMARY KEY constraint automatically has a UNIQUE constraint defined on it.
Note that you can have many UNIQUE constraints per table, but only one PRIMARY KEY constraint per table.
Does it mean that when I create primary key, it automatically define the unique key on that, that is I can have only 1 null value inserted in it?