1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
postgres=# select 0::bool;
bool
------
f
(1 row)

postgres=# select null::bool;
bool
------

(1 row)

postgres=# select true;
bool
------
t
(1 row)


postgres=# select true::int;
int4
------
1
(1 row)