子查询最简便的写法

select emp_no,salary from salaries s where 
(select count(distinct s1.salary) from salaries s1
where s.salary<=s1.salary
)=2