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
This is current design but not the long-term desired behavior. Unfortunately, with SELECT * there is currently a hack/workaround that implicitly does a GROUP BY * to return the tags. As such, SELECT * cannot currently be executed without at least an implicit hidden GROUP BY.
SELECT fieldval1, fieldval2, etc. with no GROUP BY will automatically merge all series together, but you will need to explicitly name the fields you wish to query.
When I do a SELECT * FROM measurements I get multiples series.
It is possible to group the results by one/several tags using
GROUP BY [tagname]
.Now, can I group all results?
Is it possible to make a GROUP BY "nothing" to have all series merged together?
The text was updated successfully, but these errors were encountered: