InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not an integrity constraint?(a) not null(b) unique(c) identical(d) check |
|
Answer» Correct choice is (c) identical The best I can explain: Identical is not an allowed integrity constraint in SQL. Not null prevents null values and unique only allows unique values to be entered. Check checks for a given condition. |
|