oracle 更新父级id,求SQL语句:把子结点的ID用父结点的ID替换解决思路

SQL code-------建立测试环境

create table Po(id int,pup int,content varchar(10))

insert into po select 1,0,'a'

union all select 2,1,'b'

union all select 3,1,'c'

union all select 4,2,'d'

union all select 5,2,'e'

union all select 6,3,'f'

union all select 7,3,'g'

union all select 8,5,'h'

union all select 9,5,'j'

union all select 10,8,'k'

---创建函数

create function pol(@id int)

returns int

as

begin

declare @t table(id int,pup int,lev int)

declare @i int

set @i=1

insert into @t select id,pup,@i from po where id in (select pup from po where id=@id)

while(@@rowcount>0)

begin

set @i=@i+1

insert into @t select b.id,b.pup,@i from @t a,po b where a.pup=b.id and a.lev=@i-1

end

declare @return int

declare @cnt int

select @cnt=count(*) from @t

if(@cnt>=2)

begin

select top 1 @return=id from (select top 2 * from @t order by lev desc)a order by lev

end

else

begin

set @return=@id

end

return @return

end

------调用函数:

select dbo.pol(id),pup,content from po

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值