sql server递归
程序员文章站
2022-05-08 11:21:51
with cte as ( select belongsAgent from [QPProxyDB].[dbo].[BS_ProxyInfo] where ProxyID = @ProxyID union all select a.ProxyID from [QPProxyDB].[dbo].[BS... ......
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
上一篇: 自知之明
下一篇: 咳嗽吃什么好的快 治疗咳嗽的偏方
推荐阅读
-
JSP中操作数据库的常用SQL标签用法总结
-
php递归调用删除数组空值元素的方法
-
asp无限分级(递归调用)
-
T-SQL:开窗函数(十二)
-
Linux下通过python访问MySQL、Oracle、SQL Server数据库的方法
-
sql server 备份与恢复系列三 简单恢复模式下的备份与还原
-
PL/SQL Dev连接Oracle弹出空白提示框的解决方法分享
-
重装MS SQL Server 2000前必须彻底删除原安装文件的方法
-
比较详细的完美解决安装sql2000时出现以前的某个程序安装已在安装计算机上创建挂起的文件操作。 原创
-
mssql server .ldf和.mdf的文件附加数据库的sql语句