TSQL 和 casewhen 与多个when?
我有几个条件,这些条件的结果应该是相同的。我在网上搜索并发现了这样的东西:
CASE ProductLine
WHEN 'R' THEN 'Road'
WHEN 'M' THEN 'Mountain'
WHEN 'T' THEN 'Touring'
WHEN 'S' THEN 'Other sale items'
ELSE 'Not for sale'
END
这很好,但不是我需要的,对我来说它更像是 R、M、T 和 S 都有相同的结果,而 A、B、C、D 例如没有。我该怎么做?我无法与 OR 连接,或者至少我没有成功:)。也许是这样的?
CASE ProductLine
WHEN 'R' OR 'M' OR ... THEN 'Road'
ELSE 'Not for sale'
END
I have several conditions and the result for those should be the same. I searched the net and found stuff like this:
CASE ProductLine
WHEN 'R' THEN 'Road'
WHEN 'M' THEN 'Mountain'
WHEN 'T' THEN 'Touring'
WHEN 'S' THEN 'Other sale items'
ELSE 'Not for sale'
END
That's nice, but not what I need, for me its more like R,M,T and S all have the same result and A,B,C,D for example don't have. How would I do this? I cant connect with OR, or at least I did not manage to :). Something like this maybe?
CASE ProductLine
WHEN 'R' OR 'M' OR ... THEN 'Road'
ELSE 'Not for sale'
END
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改为“搜索”CASE 表达式。上面有一个“简单”的 CASE 表达式
从上面的 MSDN 链接:
Change to a "searched" CASE expression. You have a "simple" CASE expression above
From the MSDN link above: