Does SQL Server support IS DISTINCT FROM clause?(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
可以使用 IS DISTINCT FROM
推荐答案
不,它没有.以下 SO 问题解释了如何将它们重写为等效(但更详细)的 SQL Server 表达式:
No, it doesn't. The following SO question explains how to rewrite them into equivalent (but more verbose) SQL Server expressions:
- 如何重写IS DISTINCT FROM和IS NOT DISTINCT FROM?
还有一个针对此问题的 Uservoice 条目,您可以在其中投票支持将其纳入下一版本:
There's also a Uservoice entry for this issue, where you can vote for inclusion in the next release:
- 添加对 ISO <distinct predicate> 的语言和优化器支持
- Add language and optimizer support for ISO <distinct predicate>
这篇关于SQL Server 是否支持 IS DISTINCT FROM 子句?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!