I am stuck with a update query. I have a query as
SELECT s_no, loan_id,repayment_date,principal,loan_balance, count(*) as repeatTimes FROM loan_repayment_plan_mcg GROUP BY s_no, loan_id, repayment_date,principal,loan_balance HAVING count(*) > 1 It returns this output:
s_no loan_id repayment_date principal loan_balance repeatTimes 1 21111 2012-03-13 0.00 5000.00 2 2 21311 2012-04-12 0.00 2000.00 2 3 21111 2012-05-13 500 5000.00 2 4 21111 2012-06-14 0.00 5000.00 3 I want to update loan_balance multiplied by repeatTimes from my above select query based on loan_id and repayment_date which combines together to make a unique row.