I\'ll illustrate what I would like to get in the following example:
\'2010-09-01 03:00:00\' - \'2010-09-01 00:10:00\'
Using TIMEDIFF(
TIMEDIFF(
If you are using timestamp, this could be the solution in MySQL using SQL.
SELECT TIMESTAMPDIFF(HOUR, '2010-11-29 13:13:55', '2010-11-29 13:16:55') as newtable; | newtable | 7 1 row in set (0.01 sec)