Documentation Home
MySQL 9.2 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.6Mb
PDF (A4) - 40.7Mb
Man Pages (TGZ) - 259.6Kb
Man Pages (Zip) - 366.9Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb


MySQL 9.2 Reference Manual  /  ...  /  Verifying that InnoDB is the Default Storage Engine

17.1.3 Verifying that InnoDB is the Default Storage Engine

Issue a SHOW ENGINES statement to view the available MySQL storage engines. Look for DEFAULT in the SUPPORT column.

Press CTRL+C to copy
mysql> SHOW ENGINES;

Alternatively, query the Information Schema ENGINES table.

Press CTRL+C to copy
mysql> SELECT * FROM INFORMATION_SCHEMA.ENGINES;