Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好。
有没有办法像我们在 MySQL 中那样为 InfluxDB 查询添加天数?
像这样的东西:
SELECT time + 1d, last(field) AS point FROM measurement
我们可以在 WHERE 子句中使用时间文字,但我们可以在 SELECT 子句中使用它们吗?
谢谢。
我对这个问题的解决方法是在我的测量中插入一个单独的(冗余)纪元秒整数字段。