sql查询表中根据某列排序的任意行语句
网络编程
select *
from (select t.*,
row_number() over(order by 列 desc) r
from 表 t)
where r <= 某行 and r>=某行
编辑:广州明生医药有限公司
标签:gt,某行,lt,desc,order