sql中all,any,some用法
编程学习 2021-07-05 13:42www.dzhlxh.cn编程入门
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)
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)
上一篇:最常用的SQL语句
下一篇:SqlServer 实用操作小技巧集合第1/2页