如何计算php中两行日期之间的总小时数

时间:2017-04-14 09:15:25

标签: php mysql

  

如何查找两个日期之间的总小时数。我有一个   名为activity的表,其中包含五列   id,date,time,entry_type(0表示out,1表示In)和eid。

时间栏中,我们分别拥有员工的Intime和Outtime。如何分别显示相应员工的银泰和休假时间。

活动表结构

id   Date       time       entry_type    eid 
1  2017-04-14  01:31:47     1            2  
2  2017-04-14  02:31:47     0            2  
3  2017-04-14  02:35:47     1            2  
4  2017-04-14  02:55:60     0            2  
5  2017-04-14  03:00:00     1            2  

我需要输出如下:

   id   Date       In time    Out Time   Total Hours 
    1  2017-04-14  01:31:47   02:31:47     ?           
    2  2017-04-14  02:35:47   02:55:60     ?         
    3  2017-04-14  03:00:00                   

0 个答案:

没有答案