Dit selecteert alle rijen waar some_col is NULL of '' (lege tekenreeks)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
Dit selecteert alle rijen waar some_col is NULL of '' (lege tekenreeks)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';