1.All:
对所有数据都满足条件,整个条件才成立,例如:5大于所有返回的id
select *
from A
where 5>All(select id from A)
go
2.Any:
只要有一条数据满足条件,整个条件成立,例如:3大于1,2
select *
from A
where 3>any(select id from A)
go
3.Some和Any一样
1.All:
对所有数据都满足条件,整个条件才成立,例如:5大于所有返回的id
select *
from A
where 5>All(select id from A)
go
2.Any:
只要有一条数据满足条件,整个条件成立,例如:3大于1,2
select *
from A
where 3>any(select id from A)
go
3.Some和Any一样
相关文章: