What does the NOT NULL constraint specify in a column definition?

  • Allows NULL values
  • Defines data types
  • Forbids NULL values
  • Requires unique values
The NOT NULL constraint in a column definition specifies that the column must not contain NULL values. It enforces the presence of data in that column, ensuring that each record has a valid and meaningful value for that particular attribute.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *