Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
 
Delphi 12 Athens
 
#5

AW: verschachtelte Query

  Alt 22. Apr 2020, 00:20
https://stackoverflow.com/questions/...ecursive-query

SQL-Code:
with recursive temptablename (id, name, parent_id) as (
  select id, name, parent_id
  from products
  where parent_id = 19 -- Initialisierung

  union all
  select p.id, p.name, p.parent_id
  from products p
  inner join temptablename
  on p.parent_id = temptablename.id -- Rekursion

)
select * from temptablename;
$2B or not $2B

Geändert von himitsu (22. Apr 2020 um 00:23 Uhr)
  Mit Zitat antworten Zitat