Hello all,
I’m trying influxDB Cloud Serverless and I have some issues specifying the time intervals in my SQL queries.
The first is that it looks like the resolution of the query is only of minutes, although I specify hours, minutes and seconds, because if i write:
WHERE
time > ‘2024-05-10T00:00:00Z’ AND time <= ‘2024-05-11T00:00:00Z’
The query does not include the data from ‘2024-05-10T23:59:34Z’ . The only way to get this data point is to extend one minute the query time interval to time > ‘2024-05-10T00:00:00Z’ AND time <= ‘2024-05-11T00:01:00Z’
The other weird issue is that for the particular interval of: “time > ‘2024-05-12T00:00:00Z’ AND time <= ‘2024-05-13T00:00:00Z’”, when I make the query, the first row of the table is the data corresponding to ‘2024-05-13T00:00:00Z’ which it should be the last data point. Ther rest of the rows are nicely ordered and the data point that its missplaced looks right (meaning its value makes sense if moved to the end of the series).
Any suggestions on how to address these issues will be welcome.
