How to get the difference between two dates rounded to hours

前端 未结 8 1313

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(

8条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-04 22:03

    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)
    

提交回复
热议问题