Does influxDB handle “inner join requests” ? I’m using version 1.6 and “inner join queries” are not working.
In the near future, will influxdb handle this kind of request?
If the answer is no, is there an alternative to “inner join” queries ?
Hello @chrisH,
If you use 1.7.6 and above you can use flux.
With flux you can use joins and specify the method type with
method:String
The method used to join. Possible values are: inner, cross, left, right, or full. Defaults to "inner".
I migrated influxdb to version 1.7.6. I tried an inner join query and still have the same error.
select AVERAGE.value + RT.value from AVERAGE inner join RT where AVERAGE.host = ‘admang’ and RT.host = ‘admang’;
ERR: error parsing query: found inner, expected ; at line 1, char 46