If in my table X is created an index with fields A, B and C (in this order), in SQL queries should I follow exactly that order?
Example following the order of the index:
SELECT * FROM X
WHERE X.A = VALOR_A
AND X.B = VALOR_B
AND X.C =...
asked on
04.07.2018 / 19:40