码迷,mamicode.com
首页 > 数据库 > 详细

MySQL中创建表指定存储引擎

时间:2017-11-11 17:46:05      阅读:141      评论:0      收藏:0      [点我收藏+]

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

create table test(
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   

原文地址:http://www.cnblogs.com/danawill/p/7819320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!