InterviewSolution
Saved Bookmarks
| 1. |
Distinguish between a Primary key and a Unique key in a table. |
|
Answer» Both of them ensure uniqueness of values for a column or set of columns. Primary key cannot have NULL value but Unique key may be NULL. |
|