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
Starting from version 0.9.5 INTO keyword can be used outside of continuous queries: influxdata/influxdb#4409.
But it's still unclear how to use this feature.
I was able to make two-step filtering with queries like these:
SELECT last(size) INTO temp FROM vm GROUP BY hostname
SELECT sum(last) FROM temp
But here are two questions:
how to join them into a single query? Semicolon does not work by some reason.
I'm using temp, but what does this syntax mean? It is some kind of a local variable? Is it performant and safe to use on a large number of queries in Grafana?
Thanks.
The text was updated successfully, but these errors were encountered:
Originally: https://github.com/influxdb/influxdb.com/issues/520
Starting from version 0.9.5 INTO keyword can be used outside of continuous queries: influxdata/influxdb#4409.
But it's still unclear how to use this feature.
I was able to make two-step filtering with queries like these:
SELECT last(size) INTO temp FROM vm GROUP BY hostname
SELECT sum(last) FROM temp
But here are two questions:
Thanks.
The text was updated successfully, but these errors were encountered: