If I built a btree index on columns (one, two, three, four, five) will it be used for a query with where block:
(1) ... WHERE one = 1 AND two = 2 AND three = 3 AND four = 4 -- no five
or
(2) ... WHERE two = 2 AND one = 1 -- wrong sequence, no five
or
(3) ... WHERE one = 1 AND three = 3 AND two = 2 AND five = 5 AND four = 4 -- wrong sequence