--oracle取前十条数据
--(1)第一种
select * from t_base_employee where rownum < 11;

--(2)第二种
select *
  from (select * from t_base_employee t order by t.modify_time desc)
 where rownum <= 10;

 

相关文章:

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