I am trying to figure out how I should consider the rowsMySQL output column explain. Here 's the MySQL documentation talking about this:
The row column indicates the number of rows MySQL thinks it should check the query.
So here are my questions:
- Regardless of its accuracy, will it be the number of records that will be checked after using indexes or earlier?
- Is it right that I need to evaluate high table optimization
rows? - Is it true that the total number of records MySQL will learn is a column product
rows? - What are the reduction strategies
rows?
source
share