Wie bekomme ich hierarchische Daten aus zwei Tabellen in Oracle?


8

Ich habe zwei Tabellen Tabelle1 und Tabelle2, ich brauche hierarchische Ausgabe durch Verbinden beider Tabellen.

Tabelle1 enthält drei Kategorien CAT1, CAT2 und CAT3 mit einem Fremdschlüssel, dh F_ID, einem Primärschlüssel einer anderen Tabelle table2, die eine weitere Spalte ieVAL enthält.

TABLE 1
-----------------
CAT1        CAT2        CAT3        F_ID
A           a           aa          1
A           a           ab          2
A           b           ba          3
A           b           bb          4
B           c           ca          5
B           c           cb          6
B           d           da          7


TABLE 2
-------------------
F_ID    VAL
1       4
2       6
3       4
4       1
5       6
6       6
7       9

Jetzt brauche ich die Daten im folgenden Format, wobei jede Kategorie und Unterkategorie die Gesamtsumme von VAL enthält.

Need Data in below Format from the above table
----------------------------------------------
A       -       -       15
A       a       -       10
A       a       aa      4
A       a       ab      6
A       b       -       5
A       b       ba      4
A       b       bb      1
B       -       -       21
B       c       -       12  
B       c       ca      6
B       c       cb      6
B       d       -       9
B       da      da      9

Bitte hilf mir.

Antworten:


6

Verwenden Sie Gruppierungssätze . Sie können es hier versuchen .

select cat1, cat2, cat3, sum(val) as val
  from t1 join t2 on t1.f_id = t2.f_id
group by grouping sets ((cat1),(cat1, cat2),(cat1, cat2, cat3))
order by cat1, cat2 nulls first, cat3 nulls first

AUSGABE

cat1 cat2 cat3 val
A           15
A   a       10
A   a   aa  4
A   a   ab  6
A   b       5
A   b   ba  4
A   b   bb  1
B           21
B   c       12
B   c   ca  6
B   c   cb  6
B   d       9
B   d   da  9

Wenn Sie lieber Unterstrich als nullVerwendung bevorzugenNVL

select cat1, nvl(cat2,'_') as cat2, nvl(cat3, '_') as cat3, sum(val)
  from t1 join t2 on t1.f_id = t2.f_id
group by grouping sets ((cat1),(cat1, cat2),(cat1, cat2, cat3))
order by cat1, cat2 nulls first, cat3 nulls first

4
Eine weitere Option : group by cat1, rollup(cat2, cat3).
Andriy M

5
@AndriyM oder:group by rollup(cat1, cat2, cat3) having grouping(col1)=0
ypercubeᵀᴹ
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.