Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: A SQL solution possible?
Try this
select b.DESIGNATION, b.YEAR, nvl(a.AVG_AMT,0), nvl(a.TOT_AMT,0), a.COMMENTS
from destination a,
(select designation, year from account_tbl, fiscal_year) b
where a.designation(+) = b.designation
and a.fiscal_year(+) = b.year
Regards
Wolfgang Breitling
Centrex Consulting Corporation
www.centrexcc.com
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Apr 05 2005 - 07:56:14 CDT
![]() |
![]() |