存储过程写法

Posted 94lh-shuai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程写法相关的知识,希望对你有一定的参考价值。

--创建存储过程执行删除操作
ALTER PROCEDURE [dbo].[ad_preempted_timer]
AS
DECLARE @pid VARCHAR(32)
DECLARE @times date
DECLARE @nowtime date
DECLARE @difftime INT

--定义一个游标
declare preempted_timer cursor for SELECT pid,inserttime from ad_preempted
--打开游标
open preempted_timer
--开始遍历,将下一行的数据存入两个变量中
fetch next from preempted_timer INTO @pid,@times
while @@fetch_status=0 --如果下一行还有数据
begin
--读取游标
set @nowtime=GETDATE()
SET @difftime=DATEDIFF("hh",@times,@nowtime)
if(@difftime>72)
BEGIN
DELETE from ad_preempted where [email protected]
END
fetch next from preempted_timer INTO @pid,@times

end
close preempted_timer
--摧毁游标
deallocate preempted_timer

























以上是关于存储过程写法的主要内容,如果未能解决你的问题,请参考以下文章

Oracle存储过程中跳出循环的写法

存储过程写法

SQL Server 存储过程的几种常见写法分析,我们该用那种写法

mybatis 存储过程的写法

SQL Server的存储过程怎么写?

SQL Server 存储过程中处理多个查询条件的几种常见写法分析,我们该用那种写法