- A PRIMARY KEY
- B UNIQUE
- C NOT NULL
- D DEFAULT
Answer:
C
The NOT NULL constraint in MySQL ensures that a column must have a value. It prevents the insertion of NULL values into the specified column.