informix 14.10 如何“选择”返回一个特定的短语,如无或空白,而不是没有结果
Posted
技术标签:
【中文标题】informix 14.10 如何“选择”返回一个特定的短语,如无或空白,而不是没有结果【英文标题】:informix 14.10 How to "select" returns a specific phrase such as None or blank instead of no result 【发布时间】:2020-09-30 07:47:47 【问题描述】:我有一个这样的查询:
select c1 , ( select d1 from table2 where dt) from table1 where ct
但如果在条件 dt 下没有 d1,我没有结果,但我有这样的结果:
--c1 d1
value1 NONE or Blank
value 2 NONE or Blank
. .
. .
有人可以帮忙吗?
【问题讨论】:
【参考方案1】:NVL 函数可用于返回其两个参数中的任何一个,具体取决于第一个参数的计算结果是否为 NULL。所以你的示例查询可以写成:
select c1 , NVL(( select d1 from table2 where dt), "NONE") from table1 where ct
两个参数的数据类型需要兼容,例如都是字符或都是数字。 更多信息请访问https://www.ibm.com/support/knowledgecenter/SSGU8G_14.1.0/com.ibm.sqls.doc/ids_sqs_1445.htm
【讨论】:
以上是关于informix 14.10 如何“选择”返回一个特定的短语,如无或空白,而不是没有结果的主要内容,如果未能解决你的问题,请参考以下文章