想要计算过去7天工作总时数的总和,我一天工作总时数。我有4个活动,如学习,上学,玩耍和睡觉。我想计算过去7天在学习和上学的总小时数。 我正在开发Cakephp3.x 任何查询都欢迎cakephp或mysql
$driversHos = $this->DriverLogs->DriverLogGraphs->find('all', [
'conditions' => [
'OR' => [
['DriverLogGraphs.event_type' => 0], // On duty
['DriverLogGraphs.event_type' => 1] // driving
],
'DriverLogGraphs.driver_id' => $id,
'DriverLogGraphs.start_time >=' => $thisMonthFirstDay
],
'contain' => [
'DriverLogs.Companies',
'DriverLogs.Driver'
],
'fields' => [
'Driver.id',
'Driver.username',
'DriverLogs.driver_id',
'Companies.id',
'Companies.name',
'DriverLogGraphs.id',
'DriverLogGraphs.driver_log_id',
'DriverLogGraphs.event_type',
'event_name' => "CASE
WHEN DriverLogGraphs.event_type = '0' THEN 'ON DUTY'
WHEN DriverLogGraphs.event_type = '1' THEN 'DRIVING'
WHEN DriverLogGraphs.event_type = '2' THEN 'SLEEPER BIRTH'
WHEN DriverLogGraphs.event_type = '3' THEN 'OFF DUTY'
END",
'hos_date' => "STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d')",
'hos_start' => "CONCAT(STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d'),' ','00:00:00')",
'hos_end' => "CONCAT(STR_TO_DATE(DriverLogGraphs.start_time,'%Y-%m-%d'),' ','23:59:59')",
'today_start' => "CONCAT(CURDATE(), ' ', '00:00:00')",
'today_end' => "CONCAT(CURDATE(), ' ', '23:59:59')",
'work_time' => 'TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)',
'hours_work_today' => 'SUM(TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time))',
's_time_7_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.start_time - INTERVAL 6 DAY, "%Y-%m-%d" ) , "", "" )',
'e_time_7_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.end_time, "%Y-%m-%d" ) , "", "" )',
's_time_8_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.start_time - INTERVAL 7 DAY, "%Y-%m-%d" ) , "", "" )',
'e_time_8_days' => 'CONCAT( STR_TO_DATE( DriverLogGraphs.end_time, "%Y-%m-%d" ) , "", "" )',
'hours_work_last_7_days' => '
SUM(
IF (
DriverLogGraphs.start_time >= CONCAT(STR_TO_DATE(DriverLogGraphs.start_time - INTERVAL 6 DAY, "%Y-%m-%d" ) , " ", "00:00:00" )
AND
DriverLogGraphs.end_time <= CONCAT(STR_TO_DATE(DriverLogGraphs.end_time, "%Y-%m-%d" ) , " ", "23:59:59" ),
CASE
WHEN DriverLogGraphs.event_type = "0" THEN TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)
WHEN DriverLogGraphs.event_type = "1" THEN TIMESTAMPDIFF(SECOND, DriverLogGraphs.start_time, DriverLogGraphs.end_time)
WHEN DriverLogGraphs.event_type = "2" THEN "0"
WHEN DriverLogGraphs.event_type = "3" THEN "0"
END,
""
)
)',
],
'group' => [
'hos_date',
],
'order' => [
'hos_start' => 'DESC',
]
])->hydrate(false)->toArray();
答案 0 :(得分:0)
您的表格中必须有日期字段, student_id字段用于标识学生, 考虑模型= 事件
$total_worked=$this->Events->find('all', [
'conditions'=>[
'date >='=>DATE(DATE_SUB(NOW(), INTERVAL 7 DAY)),
'student_id' => $student_id
]
]);
$StudentWorkingHour='';
foreach($total_worked as $worked){
$eachStudentWorkingHour=$StudentWorkingHour+($worked['study']+$worked['school'])
}
echo StudentWorkingHour; // Will result the total worked in one week