sql中all,any,some用法
程序员文章站
2023-12-12 16:46:40
--all:对所有数据都满足条件,整个条件才成立,例如:5大于所有返回的id select * from #a where 5>all(select id from...
--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)