Questo selezionerà tutte le righe in cui some_col
è NULL
o ''
(stringa vuota)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
Questo selezionerà tutte le righe in cui some_col
è NULL
o ''
(stringa vuota)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';