我更喜欢 1/0 而不是 t/f,那么在将布尔值转换为整数时应该使用什么?
select coalesce((null::boolean)::int, 0)
或者
select case null::boolean when 't' then 1 else 0 end
……别的?
我更喜欢 1/0 而不是 t/f,那么在将布尔值转换为整数时应该使用什么?
select coalesce((null::boolean)::int, 0)
或者
select case null::boolean when 't' then 1 else 0 end
……别的?