|
|
@ -175,34 +175,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
date; |
|
|
|
</select> |
|
|
|
<select id="selectStatisticsTime" resultMap="countMap" resultType="map"> |
|
|
|
SELECT |
|
|
|
h.time_slot, |
|
|
|
DATE(dc.create_time) AS date, |
|
|
|
COALESCE(ROUND(AVG(dc.temperature), 2), 0) AS avg_temperature, |
|
|
|
COALESCE(ROUND(AVG(dc.visibility), 2), 0) AS avg_visibility |
|
|
|
FROM |
|
|
|
( |
|
|
|
SELECT 0 AS time_slot UNION ALL SELECT 1 UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 |
|
|
|
UNION ALL SELECT 5 UNION ALL SELECT 6 UNION ALL SELECT 7 UNION ALL SELECT 8 UNION ALL SELECT 9 |
|
|
|
UNION ALL SELECT 10 UNION ALL SELECT 11 UNION ALL SELECT 12 UNION ALL SELECT 13 |
|
|
|
UNION ALL SELECT 14 UNION ALL SELECT 15 UNION ALL SELECT 16 UNION ALL SELECT 17 |
|
|
|
UNION ALL SELECT 18 UNION ALL SELECT 19 UNION ALL SELECT 20 UNION ALL SELECT 21 |
|
|
|
UNION ALL SELECT 22 UNION ALL SELECT 23 |
|
|
|
) AS h |
|
|
|
LEFT JOIN |
|
|
|
dc_meteorological_detector_data dc |
|
|
|
ON |
|
|
|
SELECT dc.visibility,dc.temperature,dc.create_time |
|
|
|
|
|
|
|
FROM dc_meteorological_detector_data dc |
|
|
|
<where> |
|
|
|
<if test="specificDate != null and specificDate !=''"> |
|
|
|
DATE(dc.create_time) = #{specificDate} |
|
|
|
</if> |
|
|
|
<if test="specificDate == null or specificDate=='' "> |
|
|
|
DATE(dc.create_time) = CURDATE() |
|
|
|
</if> |
|
|
|
AND HOUR(dc.create_time) = h.time_slot |
|
|
|
|
|
|
|
AND dc.device_name = #{deviceName} |
|
|
|
GROUP BY |
|
|
|
h.time_slot, |
|
|
|
date; |
|
|
|
</where> |
|
|
|
ORDER BY |
|
|
|
dc.create_time ASC |
|
|
|
|
|
|
|
</select> |
|
|
|
|
|
|
|