For example my table contains the following data:
ID price
-------------
1 10
1 10
1 20
2 20
2 20
3 30
3 30
4 5
4 5
4 15
So given the example above,
ID price
-------------
1 30
2 20
3 30
4 20
-----------
ID 100
How to write query in oracle? first sum(distinct price) group by id then sum(all price).
Explanation:
The inner query will select different prices for each ids.
i.e.,
Then the outer query will select
SUM
of those prices for each id.Final Result :
Result in SQL Fiddle.