[置顶] 存储过程 Row_number
程序员文章站
2022-06-13 23:11:52
...
自己之前一直是使用的通用的存储过程 ,也是封装好的只要传表名 然后 条件 等等 来到新环境 让自己写一个存储过程, 没办法 自己就需要写一个咯 之前写的比较多的是 按 top 来分页 现在公司要求是使用Row_number 当然 后者效率还是高一点 。至于索引什么的
自己之前一直是使用的通用的存储过程 ,也是封装好的只要传表名 然后 条件 等等
来到新环境 让自己写一个存储过程, 没办法 自己就需要写一个咯 之前写的比较多的是 按 top 来分页 现在公司要求是使用Row_number 当然 后者效率还是高一点 。至于索引什么的 暂时还没有用到 (有什么需求 现学也是可以的)其中也有 with(nolock) 但是会容易造成数据脏读。如果你有用到索引 或者你想看到你的语句查询开销 你可以使用(ctrl+M)键调出来。至于你看到这些占用啥的 懵了? 那就请你移驾 自行查找(我也不会你信吗?)
USE [JHMinGameDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: yanyunhai
-- Create date: 2016-04-13
-- Description: 新手送豆
-- =============================================
CREATE PROCEDURE [dbo].[Web_Active_Buyu_CardLog_page] --创建该存储过程名字(如已经存在 要改的时候就把 create 变成 Alter)
@State int,
@startTime datetime,
@endTime datetime,
@pageSize int,
@pageIndex int,
@recd int output,--输出参数
@totalpeas int output --输出参数
AS
set @recd=0 --赋值为0是避免查询结果为0 时 显示为null
set @totalpeas=0
Declare @recdst int=0,@recdend int=0 --@recdst起始条数
Set @recdst=@pageSize * (@pageIndex-1)+1 -- @recdend 结束条数
Set @recdend=@pageSize + @recdst-1
BEGIN
--在对于时间判断时建议 少用 between and 因为 0:00-23:59
declare @SumNum1 int,@SumNum2 int,@SumNum3 int
select @SumNum1=COUNT(*) from Active_CardLog with(nolock) where [State]=0
select @SumNum2=COUNT(*) from Active_CardLog with(nolock) where [State]=1
select @SumNum3=COUNT(*) from Active_CardLog with(nolock) where [State]=1 and UpTime>=@startTime and UpTimeif @State>=0
begin
select row_number() over(order by UpTime desc) as rowid,a.id,CardID, CardPwd, CardNum, State, UserID, IP, UpTime, CreateTime,b.myname into #tmp from Active_CardLog a
left join JH_member b on b.idx=a.UserID
where State=@State --and UpTime>=@startTime and UpTimeselect