复制代码 代码如下: select * from (select t.*, row_number() over(order by 列 desc) r from 表 t) where r = 某行 and r=某行
复制代码 代码如下: select * from (select t.*, row_number() over(order by 列 desc) r from 表 t) where r <= 某行 and r>=某行
2023年 4月 19日 34.4k 0
复制代码 代码如下: select * from (select t.*, row_number() over(order by 列 desc) r from 表 t) where r = 某行 and r=某行
复制代码 代码如下: select * from (select t.*, row_number() over(order by 列 desc) r from 表 t) where r <= 某行 and r>=某行