I want to get records from my influx db which are included in array of values.
SQL Example:
select * from users where id IN (54, 55, 100, 300);
Is it possible to do the same in influxdb?
As of now this feature is not available in influx.
Reference :Influx Docs
not sure, if you could solve it. still not a feature in InfluxDB but you can use the following expression...
select * from users where "id" =~ /54|55|100|300/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With