I’ve got about 30,000 unique tag values. Does InfluxQL support any query with a structure similar to this?
select * from blah where itemNo in ["1234","5678","9012","3456"]
This would make things much easier than:
select * from blah where itemNo = "1234" or itemNo = "5678" or itemNo = "9012" or itemNo = "3456"
This can go on ad nauseum and it’s really undesirable to repeat itemNo this many times when I’m sending these queries from a performant webapp and a user might have selected 12,000 item numbers.
Does such an option exist?