Default table type of MySQL - Mysql Views : 375
Tagged in : Mysql
Send mail vote down 0 vote down 0
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 .