How do I check if a column is empty or null in mysql Snippets SELECT * FROM table WHERE some_col IS NULL OR some_col = ''; 1 SELECT * FROM table WHERE some_col IS NULL OR some_col = '';