MySQL, my understanding is that the secondary index cannot directly query the data of all columns, so after querying the clustered index through the secondary index, and then querying the desired data, this process of querying through the secondary index is called back to the table.
is this understood correctly?
if explain looks at the execution plan and sees Using where in Extra, does it mean that the data was queried by returning the table?