
What is the mysql query to get the below result from the table?. Addition in the amount column should be carried out based on the invoiceID.

try this:
select @i:=@i+1 AS id,a.*
from
(select InvoiceID,sum(Amount) as Amount
from your_table
group by InvoiceID)a,(SELECT @i:=0) r