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

mysql索引的创建

时间:2016-02-20 00:22:47      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

mysql索引的创建

-- 索引的创建(创建表的时候同事添加索引)
create table index1(
id int primary key not null,
name varchar(32) not null,
age int not null,
intro varchar(200),
unique key (name), -- 唯一索引
fulltext index (intro),-- 全文索引
index (age), -- 普通索引
index (name,age) -- 联合索引、复合索引
)engine myisam charset utf8;

 

-- 创建完数据表之后,在添加索引
create table index2(
id int,
name varchar(32) not null,
age tinyint unsigned not null,
intro varchar(200) not null
)engine myisam charset utf8;

-- 添加索引
alter table index2 add primary key(id),
add unique key(name),
add index(age),
add fulltext index(intro),
add index(name,age);

mysql索引的创建

标签:

原文地址:http://www.cnblogs.com/bybelief/p/5202362.html

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