如果条件在select查询中

时间:2011-05-19 11:01:28

标签: postgresql

select email from mailing list

这是我想要使用if条件的查询。我在邮件列表中有一列unsub。如果此unsubtrue,则电子邮件在所选结果中应为空,否则电子邮件将为选定结果

1 个答案:

答案 0 :(得分:31)

select case unsub when true then null else email end as email,....
from ...

请参阅the docs for more examples