docs-v2
docs-v2 copied to clipboard
Double quotes on selectors
Selector queries need double quotes on column names
Relevant URLs
https://docs.influxdata.com/influxdb/cloud-iox/reference/sql/functions/selectors/#selector-functions-in-use From:
SELECT
selector_first(temp, time)['time'] AS time,
selector_first(temp, time)['value'] AS temp,
room
FROM home
GROUP BY room
To
SELECT
selector_first("temp", "time")['time'] AS time,
selector_first("temp", "time")['value'] AS temp,
room
FROM home
GROUP BY room
Thank you!