–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)
–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)