Or, if you NEED the other attributes,
SELECT a, b, c, etc, SUM(claim_amount) AS claim_amount
FROM expenses
WHERE employeeID = 'xxx';
i.e. name the other attributes you want instead of using *, and of course miss out the orginal claim_amount from teh list