求1981年各个月入职的的员工个数

select extract(month from hiredate) 入职月份,count(*) 人数 from emp
where extract(year from hiredate)='1981' group by extract(month from hiredate) order by 入职月份;

结果:

求1981年各个月入职的的员工个数

 

相关文章:

  • 2021-11-18
  • 2021-10-21
  • 2021-09-19
  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2021-11-17
  • 2021-06-27
相关资源
相似解决方案