SQL Server 是否支持 IS DISTINCT FROM 子句? [英] Does SQL Server support IS DISTINCT FROM clause?

查看:40
本文介绍了SQL Server 是否支持 IS DISTINCT FROM 子句?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SQL Server 是否支持 SQL:1999 标准的 IS DISTINCT FROM 语句?例如.查询

Does SQL Server support IS DISTINCT FROM statement which is SQL:1999 standard? E.g. the query

SELECT * FROM Bugs WHERE assigned_to IS NULL OR assigned_to <> 1;

可以使用 IS DISTINCT FROM

SELECT * FROM Bugs WHERE assigned_to IS DISTINCT FROM 1;

推荐答案

不,它没有.以下 SO 问题解释了如何将它们重写为等效(但更详细)的 SQL Server 表达式:

No, it doesn't. The following SO question explains how to rewrite them into equivalent (but more verbose) SQL Server expressions:

还有一个针对此问题的 Uservoice 条目,您可以在其中投票支持将其纳入下一版本:

There's also a Uservoice entry for this issue, where you can vote for inclusion in the next release:

  • Add language and optimizer support for ISO <distinct predicate>

这篇关于SQL Server 是否支持 IS DISTINCT FROM 子句?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆