0

How can you check whether a MySQL query is making use of a Covering Index and getting all the data it needs solely from that Index?

ProgrammerGirl
  • 3,157
  • 7
  • 45
  • 82

1 Answers1

1

For an index only scan (covering index) MySQL shows 'Using index' in the Extra column.

http://use-the-index-luke.com/sql/explain-plan/mysql/operations

Markus Winand
  • 8,371
  • 1
  • 35
  • 44