Use Min/Max aggregate
SELECT MontlyBugetId,
Min(Initiator),Min(Stage1),Min(Stage2),Min(Stage3),Min(Stage4),Min(StatusId)
FROM yourtable
GROUP BY MontlyBugetId
If this is your table data, then you need to update the records instead of insert to avoid duplicate records
MINorAVG