Concept Flow - NOT NULL constraint behavior
Start Insert/Update
Check Column Value
Is Value NULL?
No→Allow Operation
Yes
Reject Operation with Error
End
When inserting or updating, the database checks if a NOT NULL column has a NULL value. If yes, it rejects the operation with an error; otherwise, it allows it.