布尔类型
表 1 布尔类型
|
“真”值的有效文本值是:
TRUE、’t’、’true’、’y’、’yes’、’1’、’TRUE’、true、整数范围内1~2^63-1、整数范围内-1~-2^63。
“假”值的有效文本值是:
FALSE、’f’、’false’、’n’、’no’、’0’、’FALSE’、false、0。
使用TRUE和FALSE是比较规范的用法(也是SQL兼容的用法)。
示例
显示用字母t和f输出Boolean值。
--创建表。
postgres=# CREATE TABLE bool_type_t1
(
BT_COL1 BOOLEAN,
BT_COL2 TEXT
);
--插入数据。
postgres=# INSERT INTO bool_type_t1 VALUES (TRUE, 'sic est');
postgres=# INSERT INTO bool_type_t1 VALUES (FALSE, 'non est');
--查看数据。
postgres=# SELECT * FROM bool_type_t1;
bt_col1 | bt_col2
---------+---------
t | sic est
f | non est
(2 rows)
postgres=# SELECT * FROM bool_type_t1 WHERE bt_col1 = 't';
bt_col1 | bt_col2
---------+---------
t | sic est
(1 row)
--删除表。
postgres=# DROP TABLE bool_type_t1;