SQL Server 内联 CASE WHEN ISNULL 和多重检查

发布于 2024-11-06 05:24:27 字数 179 浏览 1 评论 0原文

我有一列包含一些空值。如果该列为空,我想根据另一列中的值来调节它的输出。

那么 if case when null (if c=80 then 'planb'; else if c=90 then 'planc')

您将如何在内联 T-SQL 语句中编写该代码?

谢谢。

I have a column with some nulls. If that column is null, I want to condition output for it based on values in another column.

So if case when null (if c=80 then 'planb'; else if c=90 then 'planc')

How would you code that in an inline T-SQL statement?

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轻拂→两袖风尘 2024-11-13 05:24:27
COALESCE(YourColumn, CASE c WHEN 80 then 'planb' WHEN 90 THEN 'planc' END)
COALESCE(YourColumn, CASE c WHEN 80 then 'planb' WHEN 90 THEN 'planc' END)
凉风有信 2024-11-13 05:24:27

您还可以使用嵌套的 case 语句。假设第一列称为DataColumn。

CASE 
  WHEN DataColumn IS NULL THEN 
    CASE c 
      WHEN 80 THEN 'planb' 
      WHEN 90 THEN 'planc' 
      ELSE 'no plan' 
    END 
  ELSE DataColumn 
END

You can also use the nested case statement. Assuming that the first column is called DataColumn.

CASE 
  WHEN DataColumn IS NULL THEN 
    CASE c 
      WHEN 80 THEN 'planb' 
      WHEN 90 THEN 'planc' 
      ELSE 'no plan' 
    END 
  ELSE DataColumn 
END
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文