When you process SELECTthrough phpmyadmin, behind the scenes, it sometimes adds LIMIT 0,30, and / or it will throw SQL_CALC_FOUND_ROWSin SELECTso that it can tell me how many results would be without LIMIT.
Unfortunately, adding SQL_CALC_FOUND_ROWSsometimes requires much more processing than I expected (i.e. more than if I used my original unoccupied request).
Is there a global configuration option to disable the phpmyadmin modification of my requests?
What tricks can I use for each request to prevent phpmyadmin from being modified?
source
share