ADO.net很重要

2021-01-03 14:32

阅读:582

标签: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


评论


亲,登录后才可以留言!