Computer Science, asked by harishwarm2004, 3 days ago

Can a column defined with NOT NULL constraint, be skipped in an INSERT command ?​

Answers

Answered by mirgalriddhi
1

Explanation:

The NOT NULL constraint enforces a column to NOT accept NULL values. This enforces a field to always contain a value, which means that you cannot insert a new record, or update a record without adding a value to this field.

Similar questions