where column is not null mysql code example
Example 1: mysql check if not null
SELECT *
FROM table
WHERE YourColumn IS NOT NULL;
Example 2: set column to not null mysql
ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;
SELECT *
FROM table
WHERE YourColumn IS NOT NULL;
ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;