fxust
Oracle中查询
 
select * from table where rownum<=10;
 
DB2中查询
 
select * from table fetch first 10 rows only;
 
MySql中查询
 
select *  from table limit 10;

分类:

技术点:

相关文章:

  • 2022-02-21
  • 2021-08-28
  • 2022-02-09
  • 2022-12-23
  • 2021-11-05
  • 2022-01-30
  • 2022-12-23
猜你喜欢
  • 2021-11-16
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-09
相关资源
相似解决方案