Create indexes for each of the columns separately. Let mysql figure out how to use them.
Also, on a side note, get used to using the between statement:
column_a between a_min AND a_max
but not:
column_a >= a_min AND column_a <= a_max -- ugly and the semantic is not as obvious
Itโs easier to read and type and do the same.
source share