I have a table "test" with two field, field1 and field2, and an composite index created field1_field2(field1, field2). here is a sql : select * from test force index(field1_field2) where field1 > 100 and field2 = 2 limit 200
and it doesnt run very well. I Explained it and found that only field1 condition used by index query, field2 condition was ignored....
I want know why, and I need a perfectly answer
there are lots of data with field1 > 100 and lots of data with field2 = 2