Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Wählen Sie alle Eltern oder Kinder in derselben Tabellenbeziehung SQL Server aus

Ich habe dieses Problem gefunden,Ich habe das Problem auf diese Weise gelöst

 --all  "parent + grandparent + etc" @childID Replaced with the ID you need

with tbParent as
(
   select * from Elem where [KEY][email protected]
   union all
   select Elem.* from Elem  join tbParent  on Elem.[KEY]=tbParent.PARENT_KEY
)
 SELECT * FROM  tbParent
 --all "sons + grandsons + etc" @parentID Replaced with the ID you need

with tbsons as
(
  select * from Elem where [KEY][email protected]
  union all
  select Elem.* from Elem  join tbsons  on Elem.PARENT_KEY=tbsons.[KEY]
)
SELECT * FROM tbsons

PS.Mein Englisch ist nicht gut.