I am trying to figure out which seems very simple but I am not able to figure out a way to do same.
Consider following table and data,
create table dummy_query
(id varchar2(20), amount number(10,2), memo varchar(20));
insert into dummy_query values('1', 10.00, 'Memo');
insert into dummy_query values('1', 20.00, 'Memo1');
I want to get the values as:
Id MemoValue Memo1Value TotalSum
----------
1 10.00 20.00 30.00
Is there any way to get data in this manner?
Thanks!
SQL Fiddle
Oracle 11g R2 Schema Setup:
Query 1:
If the
TotalSum
is the total of all memo amounts (and not justMemo
andMemo1
) then you can do:Results:
Query 2:
But if the
TotalSum
is justMemoValue + Memo1Value
then add in a where clause:Results:
Query 3:
Or, if you need to include all rows for another reason, then you could do:
Results: