知识点

  1. 记录超过15次即count() t,t>15
  2. 使用聚合运算按照员工进行分组group by,再使用having进行筛选
select emp_no, count(emp_no) t
from salaries
group by emp_no
having t > 15