SyntaxFix
Write A Post
Hire A Developer
Questions
This will select all rows where some_col is NULL or '' (empty string)
some_col
NULL
''
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';