You are on page 1of 1

syn: <exp> {< | > | !< | !> | <= | >= | = | !

= }
ANY(<select statement>)

ex: get the details of emps whose salary is greater than


the salary of dept 10

sol:
select * from emp
where sal>any(select sal from emp where dno=10)

You might also like