docs-v2 icon indicating copy to clipboard operation
docs-v2 copied to clipboard

Double quotes on selectors

Open Anaisdg opened this issue 3 years ago • 0 comments

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!

Anaisdg avatar Feb 07 '23 23:02 Anaisdg