I have a select query which returns a couple of rows grouped by ParentId
. How can I add a new row with sum of a column after each parentId
group?
For now I have kept the data in a temp table and the result is as below.
And I want to add a new row at the end of each ParentId
group as below with the sum of column LoanAmount
.
Any help will be appreciated. Many thanks.