Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> re: Brain F*rt problem solved.
List
after going in circles all day yesterday and getting the combined looping values in
the sum fields
of the query, I arrived refreshed and ready this am.
The answer I used was to create a view of the columns wanted from the 2 tables and
then use a UNION ALL query on the view to produce the results desired.
View:
CREATE OR REPLACE VIEW camsview AS
SELECT a.saledate saledate,
a.retnbr retnbr, a.settlementamt insettle, a.returnamt inret, a.cashamt incash, a.SALESCOMMAMT incomm, a.CASHBONUSAMT inbonus, to_number(null) olsales, to_number(null) olcash,
b.retnbr retnbr, to_number(null), to_number(null), to_number(null), to_number(null), to_number(null), b.salesamt olsales, b.cashamt olcash,
query:
set pagesize 60
set linesize 130
break on report
compute sum of insettle inret incash incomm inbonus on report
compute sum of olsales olcash olcomm olbonus on report
select saledate,
(sum(insettle) - sum(inret)) insettle,
sum(inret) inret, sum(incash) incash, sum(incomm)*-1 incomm, sum(inbonus)*-1 inbonus, sum(olsales) olsales, sum(olcash)*-1 olcash, sum(olcomm)*-1 olcomm, sum(olbonus)*-1 olbonus
Stephane,
Thanks for your input and the direction of a view to solve the problem.
Thanks,
Ron
ROR mª¿ªm
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ron Rogers INET: RROGERS_at_galottery.org Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Thu Dec 20 2001 - 14:11:44 CST
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |