--########## Begin ##########
select position,salary from tb_salary where
salary > ALL
(select salary from tb_salary where position='Java');
select position,salary from tb_salary where salary
> ANY (select salary from tb_salary where position='Java');
select position,salary from tb_salary where salary
IN (select salary from tb_salary where position='Java');
--########## End ##########