①select * from (select employee.*, rownum r from employee) where r between 2 and 5;

②select * from (select employee.*, rownum r from employee where rownum <= 5) where r >= 2;

③select * from (select e.*, rownum r from (select * from employee) e where rownum <= 5) where r >= 2;

相关文章:

  • 2021-12-18
  • 2021-12-18
  • 2021-11-23
  • 2021-09-30
  • 2021-11-20
  • 2021-12-19
猜你喜欢
  • 2021-11-20
  • 2021-11-20
  • 2022-02-25
  • 2021-11-20
  • 2021-11-10
  • 2021-07-01
相关资源
相似解决方案