sql查询表中根据某列排序的任意行语句时间:2022-11-04 21:58:02 select * from (select t.*, row_number() over(order by 列 desc) r from 表 t) where r <= 某行 and r>=某行