Default table type of MySQL
by Rekha[ Edit ] 2009-11-11 14:29:45
You can check the default table type being used by MySQL to run one of the following queries,
SELECT @@table_type;
or
SHOW VARIABLES LIKE "table_type";
MySQL Server uses
MyISAM as its default table type