Let's say there is a table that looks like this:
name | date | value1 | value2 | value3 | ... | value100 varchar | date | float | float | float | float ...
I can do SELECT statments with this, and use WHERE value1 > n, or do WHERE value1 > n AND value2 = n.
However, what if I wanted to include queries that included up to 100 conditions to filter the results in the table based on values in every column?
Is this possible? If it is, how could you go about indexing this since the maximum number of columns in an index is 16? The results of any given combination of WHERE conditions I will need within 10 seconds.
Thanks for the insight.