Quantcast
Channel: Active questions tagged cte - Database Administrators Stack Exchange
Viewing all articles
Browse latest Browse all 207

Recursive CTE hiearchy snowflake -- join/ expand outward (columns) instead of rows?

$
0
0

I'm doing a dependency mapping explosion (like parts explosion).

I did a typical recursive CTE with a union all.

It looks like

with CTE as( select abc from myTable where start_point = Xunion allselect abc from CTE join myTable where myTable.parent = CTE.child)select * from CTE

... However this ends up with a list like

Root -> Child 1Root -> Child 2Root -> Child 3Child 1-> 1 Grandchild 1Child 2 -> 2 Grandchild 1Child 2 -> 2 Grandchild 2

I'd prefer it looked like

Root -> Child 1 > Grandchild 1Root -> Child 2 - >2 Grandchild 1Root -> Child 2 -> 2 Grandchild 2Root -> Child 3

It's like ... I need a recursive join, not a recursive union -- but when I replace the union with a join, I can't quite get it to work. Any ideas?


Viewing all articles
Browse latest Browse all 207

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>