how to check blank column and set null in python code example
Example 1: how to check a db specific rows col is empty
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
Example 2: check if value is null mysql
SELECT * from TABLE where CODE IS NULL OR CODE!='C'