Answers for "how to add not null constraint in mysql"

SQL
1

how to add not null constraint in sql

ALTER TABLE table_name MODIFY column_name datatype NOT NULL;
Posted by: Guest on April-05-2021
2

set column to not null mysql

ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;
Posted by: Guest on April-16-2020

Code answers related to "how to add not null constraint in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language