数据库sqlserver查询指定树形结构的所有子节点 云博小周宇2024年5月5日2023年8月23日1 Min Read 用标准sql的with实现递归查询with subqry(id,name,pid) as ( select id,name,pid from test1 where id = 5 --指定id union all select test1.id,test1.name,test1.pid from test1,subqry where test1.pid = subqry.id)select* from subqry;