I have an e-commerce application that uses MySQL, and I\'d like it to be faster. When a part # is accessed on the website that has been accessed before, the part loads quick
This query will return table names in your database, so you don't have to input them manually:
SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'database name'
Then for each table name force table scan.