sqlserver2005 存储过程

 我来答
824771885
2010-11-11 · 超过43用户采纳过TA的回答
知道答主
回答量:109
采纳率:0%
帮助的人:121万
展开全部
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

create proc [dbo].[P_Del_b]
(
@b_id int
)
as
begin

delete from b where id = @b_id

declare @id int
declare @Project varchar(50)
declare se_isnull cursor for
select id,Project from a
open se_isnull
fetch se_isnull into @id,@Project
while(@@fetch_status = 0 )
begin

declare @beginlen int
declare @rpstrlen int
declare @tmpstr varchar(50)

set @beginlen = charindex(cast(@b_id as varchar(5)),@Project)
if ( @beginlen <> 0)
begin
set @rpstrlen = len(@b_id)
set @tmpstr = stuff(@Project,@beginlen,@rpstrlen+1,'')
update a set Project = @tmpstr where id = @id
end

fetch se_isnull into @id,@Project
end
close se_isnull
deallocate se_isnull

end
果冻00布丁
2010-11-11 · TA获得超过191个赞
知道小有建树答主
回答量:166
采纳率:0%
帮助的人:160万
展开全部
描述详细点。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式