数据存储引擎:
MyISAM:强化快速读取操作、
也有缺点、一些功能不支持
InnoDB:支持一些MyIASM一些不支持的功能
缺点:占用空间大
对比 MyISAM InnoDB
事务处理 不支持 支持
数据锁定 不支持 支持
外键 不支持 支持
表占用空间 相对小 2倍数
全文索引 支持 不支持
创建数据表制定存储引擎
create table if not exists persons(id int not null auto_increment primary key, height double not null default '10.20') engine =MyISAM;
show character set;//显示支持的字符集