Answers for "mysql change column to accept null"

SQL
3

postgresql change column to not null

-- To change a column to NOT NULL:
ALTER TABLE products ALTER COLUMN product_no SET NOT NULL;
Posted by: Guest on November-02-2020
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 "mysql change column to accept null"

Code answers related to "SQL"

Browse Popular Code Answers by Language