SQL Database Concepts Question:

Can you please differentiate between a primary key and a unique key?

Basic SQL Server Interview Question
Basic SQL Server Interview Question

Answer:

- By default, clustered index on the column are created by the primary key whereas nonclustered index are created by unique key.
- Primary key doesn't allow NULLs, but unique key allows one NULL.


Previous QuestionNext Question
Explain what is the function of SQL Server Agent Windows service?Tell me what are the advantages of using Stored Procedures?