Oracle MYSQL DB2 sql分页

网友投稿 237 2022-11-05


Oracle MYSQL DB2 sql分页

Oracle MYSQL DB2 sql分页

​​Oracle​​​ , ​​​MYSQL​​​ , ​​​DB2​​​ , ​​​sql​​​ , ​​​pagination​​

Oracle




  1. select * from (select rownum,name from user_tables where rownum <= endIndex)
  2. where rownum > startIndex






如果加了order就更麻烦了




  1. select * from (select rownum,name from user_tables order by orderstr) where rownum <= endIndex
  2. and rownum > startIndex






Mysql最简单

limit




  1. select   *   from   table  where whereclause order by orderstr limit  start,pageNum






DB2

使用rownumber over和fetch first rows only




  1. select * from (select syscat.indexes.*, rownumber() over() rownum from syscat.indexes where owner='DB2INST1' order by indname desc fetch first 100 rows only) where rownum < 20 and rownum >= 15










  1. DB2INST1        SQL
  2. DB2INST1        SQL100805143558190        DB2INST1        16
  3. DB2INST1        SQL100805143558150        DB2INST1        17
  4. DB2INST1        SQL100805143558100        DB2INST1        18
  5. DB2INST1        SQL100805143557870        DB2INST1        19







版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:java double类型相加精度问题的解决
下一篇:Oracle的监听定期down
相关文章

 发表评论

暂时没有评论,来抢沙发吧~