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.
我有很多以 Pa 为单位注册的压力数据,但它应该以 Bar (100,000 Pa) 为单位。
如何修改 Influxdb 中字段中的所有值除以 100,000?
我会在 MariaDB 中做什么:
UPDATE table SET pressure = pressure / 100000
你不能更新一行,但你可以覆盖它(通过确切的时间戳)只需使用相同的插入 wite 相同的时间戳(un nano),例如
insert tests,tag=tag pressure=200000 1505799797665800000 insert tests,tag=tag pressure=2 1505799797665800000
粗略的你应该阅读之前的值