ADO.net很重要
2021-01-03 14:32
阅读:654
标签: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;
今天又要从存储过程中获取到传的参数。
ADO.net很重要
标签:nbsp -- number http sel stat 今天 技术 index
原文地址:https://www.cnblogs.com/zzz7/p/13640550.html
下一篇:js 小技巧(1)
评论
亲,登录后才可以留言!