案例为空 SQL Server 2008
如何在 SQL Server 2008 中检查 case 语句中是否为 null
How to check for null in case statement in SQL Server 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 SQL Server 2008 中检查 case 语句中是否为 null
How to check for null in case statement in SQL Server 2008
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
有时你需要
case isnull(column, 99)当99然后“null”当1然后....
Sometime you need
case isnull(column, 99) when 99 then "null" when 1 then ....
在选择查询中使用大小写:
示例:
当其值=0 时,显示字段 UID=true 的记录,否则当其值为 Null 时显示 False。
Using Case in Select Query:
Example:
It shows records with field UID=true where its Value=0, otherwise it show False where its Value is Null.