mysql存储引擎:InnoDB和MyISAM的区别与优劣(二)

2014-11-24 15:47:38 · 作者: · 浏览: 1
w.2cto.com
use test;
drop table if exists tn;
create table tn (a varchar(10));
show create table tn;
5. 临时改变默认表类型可以用:
set table_type=InnoDB;
show variables like 'table_type';
或:
mysqld -max -nt --standalone --default-table-type=InnoDB
作者 xujinyang