当前位置:Gxlcms > 数据库问题 > MySQL中创建表指定存储引擎

MySQL中创建表指定存储引擎

时间:2021-07-01 10:21:17 帮助过:4人阅读


id int(10) unsigned not null auto_increment,
name varchar(10) character set utf8,
age int(10),
primary key(id)
)
engine=MyISAM

 

create table test(
id int(10) unsigned not null auto_increment,
name varchar(10) character set utf8,
age int(10),
primary key(id)
)
engine=MEMORY

 

 

create table test(
id int(10) unsigned not null auto_increment,
name varchar(10) character set utf8,
age int(10),
primary key(id)
)
engine=INNODB

 

MySQL中创建表指定存储引擎

标签:key   isa   myisam   建表   signed   nod   memory   font   nbsp   

人气教程排行