WHERE - IS NULL not working in SQLite?

前端 未结 6 547
野性不改
野性不改 2020-12-09 08:14

Here\'s a strange one:

I can filter on NOT NULLS from SQLite, but not NULLS:

This works:

SELECT *          


        
6条回答
  •  不思量自难忘°
    2020-12-09 08:33

    If you are testing perhaps the PK column (?) and the column is being treated as synonym for rowid, then no rows will have a rowid that's null.

提交回复
热议问题