码迷,mamicode.com
首页 > 其他好文 > 详细

分页存储过程

时间:2020-06-06 11:27:51      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:存储   sql   字符串   执行sql   order by   rownum   count   har   表示   

create proc FY_GetCityList 
(
    @page int,
    @rows int,
    @rowCount int out
)
as 
begin
--定义字符串变量,表示之后执行的sql语句
declare @strSql nvarchar(2000)
set @strSql=Nselect top(+STR(@rows)+) * from (select ROW_NUMBER() over(order by id) as rowNum,* from city )as a where rowNum>+STR((@page-1)*@rows)

print @strSql --打印输出拼接后的sqlyuj
--执行sql语句
exec(@strSql)
--获取总记录数
set @strSql = select @total=count(0) from city
print @strSql

exec sp_executesql @strSql,N@total int out,@total=@rowCount out

end

--执行存储过程
declare @count int
exec FY_GetCityList 1,3,@count out
print @count

 

分页存储过程

标签:存储   sql   字符串   执行sql   order by   rownum   count   har   表示   

原文地址:https://www.cnblogs.com/lina0621/p/13053546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!