Question

Dans SQLite, comment puis-je sélectionner des enregistrements où certains_column sont vides?
Le vide compte comme null et "".

Était-ce utile?

La solution

Il y a plusieurs façons, comme:

where some_column is null or some_column = ''

ou

where ifnull(some_column, '') = ''

ou

where coalesce(some_column, '') = ''

de

where ifnull(length(some_column), 0) = 0

Autres conseils

It looks like you can simply do:

SELECT * FROM your_table WHERE some_column IS NULL OR some_column = '';

Test case:

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);

Result:

SELECT id FROM your_table WHERE some_column IS NULL OR some_column = '';

id        
----------
1         
2         
5    

Maybe you mean

select x
from some_table
where some_column is null or some_column = ''

but I can't tell since you didn't really ask a question.

You can do this with the following:

int counter = 0;
String sql = "SELECT projectName,Owner " + "FROM Project WHERE Owner= ?";
PreparedStatement prep = conn.prepareStatement(sql);
prep.setString(1, "");
ResultSet rs = prep.executeQuery();
while (rs.next()) {
    counter++;
}
System.out.println(counter);

This will give you the no of rows where the column value is null or blank.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top