14.1.3 Verifying that InnoDB is the Default Storage Engine
Issue the SHOW ENGINES statement to view the available MySQL storage engines. Look for DEFAULT in the SUPPORT column.
mysql> SHOW ENGINES;
Alternatively, query the Information Schema ENGINES table.
mysql> SELECT * FROM INFORMATION_SCHEMA.ENGINES;
© 2025 Oracle
Licensed under the GPLv2 License.