select emp_no,count(salary) t from salaries group by emp_no having t>15;

select emp_no,count(salary) t from salaries

group by emp_no having t>15;