Default table type of MySQL - Mysql Views : 396
Tagged in : Mysql
0 0
Send mail
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
By Rekha, On - 2009-11-11



    Login to add Comments .