输出"是/否"而不是" t / f"对于PostgreSQL中的布尔数据类型

时间:2015-03-10 08:55:12

标签: sql postgresql boolean

如何创建一个返回yes/no而不是t/f(true / false)的查询?

目前的解决方案是:

SELECT credit_card_holders.token IS NOT NULL AS premium

我找到了一个Ruby解决方案: Rails (or Ruby): Yes/No instead of True/False

但如果可能的话,宁愿在PostgreSQL中这样做。

4 个答案:

答案 0 :(得分:5)

结束了这个:

(case when credit_card_holders.token IS NOT NULL then 'Yes' else 'No' end) AS premium

答案 1 :(得分:3)

通过创建自定义类型,您也可以实现此目的,请参阅以下示例

create table foo (id int,xid int);
insert into foo values (1,2),(2,3);

我们有以下数据

id xid 
-- --- 
1  2   
2  3   

并且以下select语句返回布尔值。

select exists(select * from foo where xid=4);

exists
boolean
------
f

select exists(select * from foo where xid=3);

exists
boolean
------
t

好了,现在我们需要返回YESNO而不是tf,这样我们就可以创建一个自定义类型,如下所示

create type bool2yesno as enum ('YES','NO'); --or whatever you want 'yes','no'.

并创建一个函数将布尔值转换为创建的自定义类型,即bool2yesno

create function convert_bool_to_bool2yesno(boolean)
  returns bool2yesno
  immutable
  strict
  language sql
as $func$
  select case $1
    when false then 'NO'::bool2yesno
    when true  then 'YES'::bool2yesno
  end
$$;

现在为新创建的类型

创建cast
create cast (boolean as bool2yesno )
  with function convert_bool_to_bool2yesno(boolean)
  as assignment;

现在再次尝试选择语句

select exists(select * from foo where xid=4)::bool2yesno ;

exists 
bool2yesno 
----------
NO     

select exists(select * from foo where xid=3)::bool2yesno ; 
exists 
bool2yesno 
---------- 
YES 

参考:
CREATE TYPE {
{3}} {
{3}}

答案 2 :(得分:2)

如果真/假的话,最简单的方法是:

SELECT (credit_card_holders.token IS NOT NULL)::text AS premium

至少它比t / f更具可读性!

答案 3 :(得分:-1)

使用此宝石humanize_boolean,您可以这样做

true.humanize # => "Yes" false.humanize # => "No"