在SQLite中,如何选择some_column为空的记录? 空将同时计为NULL和“”。
有几种方法,例如:
where some_column is null or some_column = ''
或者
where ifnull(some_column, '') = ''
where coalesce(some_column, '') = ''
的
where ifnull(length(some_column), 0) = 0