MySql 表引擎修改

1.默认的表引擎为MyISAM(不支持事务)

2.修改默认表引擎语句:

 alter table t_login_log(表名) type=InnoDB;

原文地址:https://www.cnblogs.com/zhaidh/p/3910414.html