sql查询表中根据某列排序的任意行语句
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:select*from(selectt.*,row_number()over(orderby列desc)rfrom表t)w...
复制代码 代码如下:
select *
from (select t.*,
row_number() over(order by 列 desc) r
from 表 t)
where r <= 某行 and r>=某行