忘れられたSQLServerは、演算子の述語と比較します。

1837 ワード

公式の参考文書
http://technet.microsoft.com/zh-cn/library/ms187074%28SQL.90%29.aspx
彼らは比較演算子とサブクエリの間で機能し、Exists、not exists、in、not in、およびその他の論理的意味に類似しています。これらの文法は同様にSQLServer 2000によってサポートされていますが、それらを使う人はあまりいません。
 
  
set nocount on
use tempdb
go
if (object_id ('t1' ) is not null ) drop table t1
create table t1 (n int )
insert into t1 select 2 union select 3
if (object_id ('t2' ) is not null ) drop table t2
create table t2 (n int )
insert into t2 select 1 union select 2 union select 3 union select 4
select * from t2 where n> all (select n from t1 ) --4
select * from t2 where n> any (select n from t1 ) --3,4
--select * from t2 where n>some(select n from t1) --3,4
select * from t2 where n= all (select n from t1 ) --
select * from t2 where n= any (select n from t1 ) --2,3
--select * from t2 where n=some(select n from t1) --2,3
select * from t2 where n< all (select n from t1 ) --1
select * from t2 where n< any (select n from t1 ) --1,2
--select * from t2 where nselect * from t2 where n<> all (select n from t1 ) --1,4
select * from t2 where n<> any (select n from t1 ) --1,2,3,4
--select * from t2 where n<>some(select n from t1)--1,2,3,4
set nocount off
なお、t 1にnullデータが含まれている場合、Allに関するすべての比較演算は、結果に戻りません。その理由は、多く説明する必要はありません。t 1とt 2の表のnullの存在のため彼らとnot existsなどの比較符はいくつか区別があります。
たとえば下の二つの文
select*from t 2 a where not exists(select 1 from t 1 where n>=a.n)
select*from t 2 where n>all(select n from t 1)
彼らの論理的な意味は似ていますが、nullの処理に対しては正反対です。第一句は子供の問い合わせを無視して、t 2のnullを同時に調べます。第二句はt 2のnullを無視しています。同時にt 1のnullのためにデータを調べられません。