PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

De alguma forma fazer `where booleanvalue=false` no Sql Server e no PostgreSQL?


O SQL Server alterará automaticamente o valor do bit para o valor varchar de true ou false. Então o seguinte funciona lá:
select * from table where booleancol = 'false'

Não tenho ideia se o postgre faz a mesma coisa.