Sélectionner dans sqlite où some_colum est vide. empty signifie à la fois NULL et "".
Réponses
Trop de publicités?
Daniel Vassallo
Points
142049
Il semble que vous pouvez simplement le faire :
SELECT * FROM your_table WHERE some_column IS NULL OR some_column = '';
Cas de test :
CREATE TABLE your_table (id int, some_column varchar(10));
INSERT INTO your_table VALUES (1, NULL);
INSERT INTO your_table VALUES (2, '');
INSERT INTO your_table VALUES (3, 'test');
INSERT INTO your_table VALUES (4, 'another test');
INSERT INTO your_table VALUES (5, NULL);
Résultat :
SELECT id FROM your_table WHERE some_column IS NULL OR some_column = '';
id
----------
1
2
5
µBio
Points
6959