sql server递归

with cte as
(
select belongsagent from [qpproxydb].[dbo].[bs_proxyinfo] where proxyid = @proxyid 
union all
select a.proxyid from [qpproxydb].[dbo].[bs_proxyinfo] a join cte b on a.proxyid = b.belongsagent
)
select * from cte order by belongsagent asc

 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐