Concept Flow - Integrity constraints
Start: Insert/Update/Delete
Check NOT NULL
Check UNIQUE
Check PRIMARY KEY
Check FOREIGN KEY
Check CHECK constraints
If all pass
→Operation Allowed
If any fail
→Operation Rejected
When data is changed, the system checks each integrity rule step-by-step. If all rules pass, the change is allowed; if any fail, it is rejected.