To compute the total elapsed time, use TIME_TO_SEC( ) to convert the values to seconds before summing them.
mysql> mysql> mysql> CREATE TABLE time_val -> ( -> t1 TIME, -> t2 TIME -> ); Query OK, 0 rows affected (0.00 sec) mysql> mysql> INSERT INTO time_val (t1,t2) VALUES('15:00:00','15:00:00'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO time_val (t1,t2) VALUES('05:01:30','02:30:20'); Query OK, 1 row affected (0.00 sec) mysql> INSERT INTO time_val (t1,t2) VALUES('12:30:20','17:30:45'); Query OK, 1 row affected (0.00 sec) mysql> mysql> SELECT * FROM time_val; +----------+----------+ | t1 | t2 | +----------+----------+ | 15:00:00 | 15:00:00 | | 05:01:30 | 02:30:20 | | 12:30:20 | 17:30:45 | +----------+----------+ 3 rows in set (0.00 sec) mysql> mysql> mysql> SELECT SUM(TIME_TO_SEC(t1)) AS 'total seconds', -> SEC_TO_TIME(SUM(TIME_TO_SEC(t1))) AS 'total time' -> FROM time_val; +---------------+------------+ | total seconds | total time | +---------------+------------+ | 117110 | 32:31:50 | +---------------+------------+ 1 row in set (0.00 sec) mysql> mysql> mysql> drop table time_val; Query OK, 0 rows affected (0.00 sec)