Hello, people.
Is there a way to add days to an InfluxDB query, like we do in MySQL?
Something like this:
SELECT time + 1d, last(field) AS point FROM measurement
We can use time literals in the WHERE clause, but can we use them on the SELECT one?
Thanks.