服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - sql中all,any,some用法

sql中all,any,some用法

2019-11-16 14:39SQL教程网 Sql Server

sql中all,any,some用法实现语句,需要的朋友可以看下。

--All:对所有数据都满足条件,整个条件才成立,例如:5大于所有返回的id 
select * 
from #A 
where 5>All(select id from #A) 
go 

--Any:只要有一条数据满足条件,整个条件成立,例如:3大于1,2 
select * 
from #A 
where 3>any(select id from #A)

延伸 · 阅读

精彩推荐