MySQL workbench code:
with Settlement as
(select
employee_id, start_balance, change, transaction_date, (start_balance + change) AS final_balance
from transactions
where employee_id = 101
order by transaction_date)
select * from Settlement;