/ Published in: SQL
Make a Table column "required" or "mandatory" by adding a NOT NULL Constraint
Expand |
Embed | Plain Text
ALTER TABLE table_name MODIFY column_name NOT NULL;
You need to login to post a comment.
Make a Table column "required" or "mandatory" by adding a NOT NULL Constraint
ALTER TABLE table_name MODIFY column_name NOT NULL;
You need to login to post a comment.