sql 分页检索数据
select * from ( select row_number() over(order by code) row , * from CSH_GCBH) as a
where a.row between 101 and 110
select * from ( select row_number() over(order by code) row , * from CSH_GCBH) as a
where a.row between 101 and 110