Question : Which of the following options given below are not an example of integrity constraint -
Option 1: NOT NULL
Option 2: PRIMARY KEY
Option 3: COUNT
Option 4: UNIQUE
Correct Answer: COUNT
Solution : Each record or row in the data table must be unique, and this is ensured by the integrity constraint. The UNIQUE constraint, PRIMARY KEY constraint, NOT NULL constraint and CHECK constraint are the main forms of integrity constraints that assist us in assuring the uniqueness of each entry.
Hence the correct answer is option 3.