I am trying to display group by field name after doing sum of columns in Oracle SQL Developer, but not getting.
Following is my data -
Looking for output as follow -
Here is my query -
Select ID,Name, Sum(Amount) From Table1 Group By Name Order By SUM (Amount)DESC;