本文介绍了带有空字符串的 SQL 合并的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下几点:
Select Coalesce(Other,Industry) Ind from registration
问题是Other
可以是空字符串或NULL
.我如何让 coalesce
工作,如果 Other
是一个空字符串,Coalesce
仍然返回 Industry
?
The thing is that Other
can be an empty string or NULL
.How do I get coalesce
to work such that if Other
is an empty string, Coalesce
still returns Industry
?
推荐答案
使用 CASE
表达式或 NULLIF
:
SELECT COALESCE(NULLIF(Other,''),Industry) Ind FROM registration
这篇关于带有空字符串的 SQL 合并的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!