首页 > 开发 > 综合 > 正文

利用存储过程

2024-07-21 02:12:17
字体:
来源:转载
供稿:网友
利用存储过程来消除数据库中冗余的数据
create procedure sp_mytest as
declare @pro varchar(50)
declare @mm int
declare wu cursor for select distinct product from mytest
open wu
fetch next from wu into @pro
while @@fetch_status=0
begin
 select @mm=sum([cost]) from mytest where [product][email protected]
 delete from mytest where [product][email protected]
 insert into mytest ([product],[cost]) values(@pro,@mm)
 
 fetch next from wu into @pro
end
close wu
deallocate wu
go
我们可以使用作业进行相应的数据的更新

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表