[sql ] mysql 5분 단위 그룹핑 평균
시간 단위로 먼저 그룹핑 한 후에, 분단위를 5로 나누어 그룹핑한다. SELECT date_format(log_time, '%Y%m%d%H%i%S'), count(*), AVG(sensor_value) FROM kfri_landslide.2013_12_80_85 WHERE log_time like '2013-12-05%' GROUP BY SUBSTR(date_format(log_time, '%Y%m%d%H%i%S'), 1, 10), FLOOR(SUBSTR(date_format(log_time, '%Y%m%d%H%i%S'), 11, 2) / 5) ORDER BY idx 시간 및 분단위로 분리하는 함수를 사용한 SQL 문 SELECT date_format(log_time, '%Y%m%d%H%i%S'), co..