Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 PostgreSQL 9.1.9 中显示大量布尔值而不引起眼睛疲劳?
我遇到的问题是各种 PostgreSQL 客户端将布尔值显示为 t/f,并且在查看数据时很难区分这些值:
使用强制转换,您可以将布尔值强制转换为::text获取其输出的 true 或 false 文本值(同样糟糕):
::text
或要解决此问题,请使用用例语句:
CASE WHEN dt.x12_940 THEN 'TRUE' ELSE '' END AS x12_940,
输出: