Which constraint can only be applied at the column level?
-
Primary Key
-
Check
-
Not Null
-
Unique
C
Correct answer
Explanation
NOT NULL constraints must be specified at the column level because they directly define whether a single column can accept null values. Other constraints like PRIMARY KEY, UNIQUE, and CHECK can be defined at either the column level or the table level (especially when spanning multiple columns).