经过排序后,SQL语句查询第4条到第7条记录,或者叫做不包含前3条的前4条记录。
用sql语句中的not in 实现。下面是对应sql语句:
select top 4 * from table where Id not in (select top 3 Id from table order by Id desc) order by Id desc
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/396.html