标签:nbsp -- number http sel stat 今天 技术 index
一个分页查询
set statistics time on; -- 分页查询(通用型) select top pageSize * from (select row_number() over(order by sno asc) as rownumber,* from student) temp_row where rownumber>((pageIndex-1)*pageSize); set statistics time on; -- 分页查询第2页,每页有10条记录 select top 10 * from (select row_number() over(order by sno asc) as rownumber,* from student) temp_row where rownumber>10;
今天又要从存储过程中获取到传的参数。
标签:nbsp -- number http sel stat 今天 技术 index
原文地址:https://www.cnblogs.com/zzz7/p/13640550.html