calculate a sum of type time using sql

SELECT  SEC_TO_TIME( SUM( TIME_TO_SEC( `timeSpent` ) ) ) AS timeSum  
FROM YourTableName  

This worked for me. Hope this helps.

Leave a Comment