select *
from (select row_number() over(order by tmp.id) as row,*
from (select * from table_1) tmp) temp
where temp.row between 1 and 15
使用的时候只需将“select * from table_1”换成你的查询结果即可
select *
from (select row_number() over(order by tmp.id) as row,*
from (select * from table_1) tmp) temp
where temp.row between 1 and 15
使用的时候只需将“select * from table_1”换成你的查询结果即可