1.基础概念:
在Oracle中,any()表示括号内任何一个条件,只要有一个满足即可;而all()表示所有的条件都满足才可以。
2.代码演示:
1.all用法
--大于最大值
select * from A where id >= all(select id from A)
--这相当于
select * from A where id >= (select max(id) from A)
--小于最小值
select * from A where id <= all(select id from A)
--这相当于
select * from A where id <= (select min(id) from A)
2.any用法
--大于任意一个数即可,大于最小值
select * from A where id >= any(select id from A)
--这相当于
select * from A where id >= (select min(id) from A)
--小于任意一个数即可,小于最大值
select * from A where id <= any(select id from A)
--这相当于
select * from A where id <= (select max(id) from A)