Oracle 多表分页查询rownum

--------------------------------

select * from
 (
 select t0.ne_id,
        t0.ne_name,
        t1.msc_ave_load,
        t1.msc_max_load,
        t1.tone_bhca,
        t1.msc_bhca,
        t1.msc_load,
        t2.add_p_ms,
        rownum nu
   from nettest t0, perf_msc t1, perf_quality t2
  where t0.ne_id = t1.ne_id
    and t0.ne_id = t2.ne_id
    and rownum <= 5 )
    where nu >1

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-07
  • 2021-12-18
  • 2021-06-19
  • 2018-03-06
  • 2019-01-11
猜你喜欢
  • 2022-01-04
  • 2021-04-10
  • 2022-12-23
  • 2021-09-23
  • 2022-02-10
相关资源
相似解决方案