| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: Simple SQL?
Stefan
This should work in db2/udb
Hope it helps
Regards
Select
t1.a,
sum(t2.b2),
sum(t3.c2)
from
a t1 left outer join
b t2
on t1.a1 = t2.b1 left outer join
c t3
on t1.a1 = t3.c1
![]() |
![]() |