I have a table with 10 columns and I need to support combined range filters for most of them.
Let's say for example:
WHERE column_a >= a_min AND column_a <= a_max
AND column_b >= b_min AND column_b <= b_max
...
But that is not all, I need also to support sorting data by different columns.
My question is, considering that the possible indexes combinations to create in order to optimize the searches is huge, which are my possible options?
Thanks!