数据库分页查询+排序

select * from (
select A.*, rownum rn from (
select * from Table t order by t.bh asc
) A where rownum <=10
)where rn >=0

你可能感兴趣的:(数据库分页查询+排序)