InterviewSolution
Saved Bookmarks
| 1. |
The primary key must be(a) Unique(b) Not null(c) Both Unique and Not null(d) Either Unique or Not nullThis question was addressed to me in class test.The question is from Null Values Operations topic in chapter SQL : Queries, Constraints and Triggers of Database Management |
|
Answer» CORRECT option is (C) Both Unique and Not NULL Explanation: Primary key must SATISFY unique and not null condition for sure. |
|