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
InfluxDBClientError: 400: Couldn't look up columns
When querying a time-series using an aggregate function together with a where clause on the time field for time ranges that do not exist in the series.
Example:
I have a time-series named 'x' which contains data of only one month (the last month)
Then I tried to run the following query:
select mean(energy) from x where time < now() - 300d and time > now() - 400d;
And I got the above error.
The text was updated successfully, but these errors were encountered:
InfluxDBClientError: 400: Couldn't look up columns
When querying a time-series using an aggregate function together with a where clause on the time field for time ranges that do not exist in the series.
Example:
I have a time-series named 'x' which contains data of only one month (the last month)
Then I tried to run the following query:
select mean(energy) from x where time < now() - 300d and time > now() - 400d;
And I got the above error.
The text was updated successfully, but these errors were encountered: