官方的参考文档 http://technet.microsoft.com/zh-cn/library/ms187074(SQL.90).aspx 他们作用于比较运算符和子查询之间,作用类似Exists、not exists、in、not in以及其他逻辑意义,这些语法同样被SQLServer2000支持但是很少看到有人用它们。 代码如下: set nocount on use tempdb go if (object_id (‘t1’ ) is not null ) drop table t1 create table t1 (n int ) insert into t1 selec