Skip to main content
deleted 3 characters in body
Source Link
András Váczi
  • 31.8k
  • 13
  • 103
  • 152

According to your question you have a table with field A and B. If you your query is:

 According to your question you have a table with field A and B. If you your query is: SELECT * FROM [YOUR TBL] WHERE A='XXXX' Optimizer will chose the Composite index to avoid Extract random access! SELECT * FROM [YOUR TBL] WHERE A='XXXX' 

Optimizer will chose the Composite index to avoid Extract random access!

 According to your question you have a table with field A and B. If you your query is: SELECT * FROM [YOUR TBL] WHERE A='XXXX' Optimizer will chose the Composite index to avoid Extract random access! 

According to your question you have a table with field A and B. If you your query is:

SELECT * FROM [YOUR TBL] WHERE A='XXXX' 

Optimizer will chose the Composite index to avoid Extract random access!

Source Link
BongSey
  • 119
  • 11

 According to your question you have a table with field A and B. If you your query is: SELECT * FROM [YOUR TBL] WHERE A='XXXX' Optimizer will chose the Composite index to avoid Extract random access!