| | |
| | | SELECT |
| | | t3.equipment_name, |
| | | t1.utilization_rate AS utilizationRate, |
| | | t2.utilization_rate AS shiftUtilizationRate |
| | | t2.utilization_rate AS shiftUtilizationRate, |
| | | t1.remove_fault_rate AS amendUtilizationRate |
| | | FROM |
| | | mdc_equipment_statistical_info_month t1 |
| | | LEFT JOIN mdc_equipment_statistical_shift_info_month t2 ON t1.the_month = t2.the_month AND t2.shift_type = 1 |
| | |
| | | SELECT |
| | | t3.team_code AS teamCode, |
| | | t1.utilization_rate AS utilizationRate, |
| | | t2.utilization_rate AS shiftUtilizationRate |
| | | t2.utilization_rate AS shiftUtilizationRate, |
| | | t1.remove_fault_rate AS amendUtilizationRate |
| | | FROM |
| | | mdc_equipment_statistical_info_month t1 |
| | | LEFT JOIN mdc_equipment_statistical_shift_info_month t2 ON t1.the_month = t2.the_month AND t2.shift_type = 1 |
| | |
| | | t1.the_month AS theMonth, |
| | | AVG ( t1.utilization_rate ) AS utilizationRate, |
| | | AVG ( t2.utilization_rate ) AS shiftUtilizationRate, |
| | | AVG ( t1.remove_fault_rate ) AS amendUtilizationRate, |
| | | SUM ( t1.process_long ) AS processLong |
| | | FROM |
| | | mdc_equipment_statistical_info_month t1 |