how to check a db specific rows col is empty code example
Example: how to check a db specific rows col is empty
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';