You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if one could give aggregated columns alias names.
The select clause thus should allow the following syntax:
select max(temp) as max_temp, min(temp) as min_temp from sensor_data group by time(1h);
select max(temp) max_temp, min(temp) min_temp from sensor_data group by time(1h);
The text was updated successfully, but these errors were encountered:
It would be nice if one could give aggregated columns alias names.
The select clause thus should allow the following syntax:
The text was updated successfully, but these errors were encountered: