https://www.postgresql.org/docs/9.1/static/functions-comparison.html
在 Postgres 里面,null 被认为是未知的数据类型,所以是不能用 expression = NULL
这种语句来查询的,应该用 expression IS NOT NULL
对于布尔值也是一样的,所以在 boolean 的字段中最好设一个 default 的值,就不会有查询方面的困扰了。
https://www.postgresql.org/docs/9.1/static/functions-comparison.html
在 Postgres 里面,null 被认为是未知的数据类型,所以是不能用 expression = NULL
这种语句来查询的,应该用 expression IS NOT NULL
对于布尔值也是一样的,所以在 boolean 的字段中最好设一个 default 的值,就不会有查询方面的困扰了。