标签:nbsp 分页 lse top 代码 tom 使用 asc sele
例子:
select top 5* from (SELECT ROW_NUMBER() OVER(ORDER BY ID ASC) AS rowid,* FROM CustomerInfo) c where c.rowid > ((2-1)*5)
解说:
这种写法效率比not in 那种更高,并且出错率更低,代码看起来更加简短
标签:nbsp 分页 lse top 代码 tom 使用 asc sele
原文地址:https://www.cnblogs.com/qudeqiang/p/9149886.html