oracle查询分页。一个demo,可以借用。

  select a.unid from ( select t.unid,rownum rowno from DEV_REG_CFG_CAMERA t where rownum <= 20 ) a where a.rowno >= 11;

 
05-10 20:51