Puoi provare con:

SELECT tassista, SUM(km) AS distanza
FROM Chiamata
WHERE data = '25-12-2007'
GROUP BY tassista
ORDER BY distanza DESC
LIMIT 1