SQL Server 内联 CASE WHEN ISNULL 和多重检查
我有一列包含一些空值。如果该列为空,我想根据另一列中的值来调节它的输出。
那么 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用嵌套的 case 语句。假设第一列称为DataColumn。
You can also use the nested case statement. Assuming that the first column is called DataColumn.