热门搜索
-
被遗忘的SQLServer比较运算符谓词
官方的参考文档http://technet.microsoft.com/zh-cn/library/ms187074%28SQL.90%29.aspx他们作用于比较运算符和子查询之间,作用类似Exists、notexists、in、notin以及其他逻辑意义,这些语法同样被SQLServer2000支持但是很少看到有人用它们。复制代码代码如下:setnocountonusetempdbgoif(object_id('t1')isnotnull)droptablet1createtablet1(nint)insertintot1select2unionselect3if(object_id('t2')isnotnull)droptablet2createtablet2(nint)insertintot2select1unionselect2unionselect3unionselect4select*fromt2wheren>all(selectnfromt1)--4select*fromt2wheren>any(selectnfromt1)--3,4--select*fro...
数据库操作教程 2022-09-23 16:58:36