Return number of rows looped through by MySQL when the search has a LIMIT?
Is it possible to have MySQL return the number of rows looked at? SELECT * FROM `table` WHERE location like '%New York%' LIMIT 10 So in the example above, MySQL might loop through 30 rows in order to return these…