mysql st to null code example
Example 1: set column to not null mysql
ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;
Example 2: check if value is null mysql
SELECT * from TABLE where CODE IS NULL OR CODE!='C'
ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;
SELECT * from TABLE where CODE IS NULL OR CODE!='C'