Postgresql SQL: How check boolean field with null and True,False Value?
There are 3 states for boolean in PG: true, false and unknown (null). Explained here: Postgres boolean datatype Therefore you need only query for NOT TRUE: SELECT * from table_name WHERE boolean_column IS NOT TRUE;