select *from (select empno,MGR,hiredate,row_number() over(partition by MGR order by hiredate desc) as currowid  from emp)where currowid = 1;

相关文章:

  • 2021-12-20
  • 2021-07-01
  • 2021-12-18
  • 2021-11-26
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-07
  • 2021-11-05
  • 2021-11-26
  • 2021-10-03
  • 2022-01-01
  • 2021-09-01
  • 2022-02-11
相关资源
相似解决方案