Cela sélectionnera toutes les lignes où some_col
est NULL
ou ''
(chaîne vide)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';
Cela sélectionnera toutes les lignes où some_col
est NULL
ou ''
(chaîne vide)
SELECT * FROM table WHERE some_col IS NULL OR some_col = '';