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;
2021-07-31 12:17:15
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;