我在 influxDb 中使用两个键进行了测量:operation
和count
. 密钥可以存储两个不同的operation
值:“添加”和“删除”。
当 operation='add' 时,我想将 operation='delete' 时的 sum(count) 值减去 sum(count) 值。
mysql 支持以下查询,但在 influxql 中会抛出错误:
select (select sum(count) from measurement where operation='add') - (select sum(count) from measurement where operation='delete');
如何使用单个 influxql 查询来完成?我不认为 influxql 在这种情况下允许两个不同的 where 子句。