issues:https://github.com/influxdata/influxdb/issues/7530
使用子查询
Select mean(*) from
(select * from channel where (time > '2017-05-01 13:00:00' and time < '2017-05-01 15:00:00') ),
(select * from channel where (time > '2017-05-01 18:00:00' and time < '2017-05-01 19:00:00') )
GROUP BY time(20m)fill(none);