赞
踩
1、创建表的同时 指定
create table t1(
id int not null,
name char(30) not null,
unique index UniqIdx(id)
)
2、在已经存在的表创建索引
使用ALTER TABLE 语句创建索引
1.执行语句
alter table book add index BkName(bookname(30))
2.show index 查看表中索引
show index from book
可以看到新增了一个索引
创建唯一索引:
alter table book add index UniqiIdx(bookId)
使用CREATE TABLE 语句创建索引
创建普通索引:
create index BkNameIdx on book(bookname)
创建唯一索引:
create unique index UniqIdx on book(bookId)
删除索引
使用ALTER TABLE 语句删除索引
alter table 表名 drop index 索引名
使用DROP INDEX 语句删除索引
drop index 索引名 on 表名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。