What is the purpose of NOT NULL when using the CREATE statem
What is the purpose of NOT NULL when using the CREATE statement in SQL?
Solution
Answer:
In SQL , \"NOT NULL\" purpose is to signal a column to NOT accept any kind of NULL values. Its purpose is to give a signal to the feild to always contain a value, it means we cannot insert a new value , record without adding a value.

