InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a class of constraint in SQL Server?(a) NOT NULL(b) CHECK(c) NULL(d) UNIQUEThe question was asked in a job interview.My question is from Constraints topic in section Manipulating Data with Select of SQL Server |
|
Answer» RIGHT choice is (C) NULL To elaborate: NOT NULL SPECIFIES that the column does not accept NULL values. For more information. |
|