In SQLite, how can I select records where some_column is empty? Empty counts as both NULL and \"\".
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.