Skip to main content
Fixed code formatting
Source Link
alecxe
  • 475.9k
  • 127
  • 1.1k
  • 1.2k

If you want to see all indexes across all databases all at once:

use information_schema
SELECT * FROM statistics;

use information_schema; SELECT * FROM statistics; 

If you want to see all indexes across all databases all at once:

use information_schema
SELECT * FROM statistics;

If you want to see all indexes across all databases all at once:

use information_schema; SELECT * FROM statistics; 
Source Link
RolandoMySQLDBA
  • 44.4k
  • 16
  • 96
  • 136

If you want to see all indexes across all databases all at once:

use information_schema
SELECT * FROM statistics;