当前位置:   article > 正文

创建索引

创建索引

1、创建表的同时 指定

create table t1(
	id int not null,
	name char(30) not null,
	unique index UniqIdx(id)
)
  • 1
  • 2
  • 3
  • 4
  • 5

2、在已经存在的表创建索引

使用ALTER TABLE 语句创建索引

1.执行语句

alter table book add index BkName(bookname(30))
  • 1

2.show index 查看表中索引

show index from book
  • 1

可以看到新增了一个索引

创建唯一索引:

alter table  book add index UniqiIdx(bookId)
  • 1

使用CREATE TABLE 语句创建索引

创建普通索引:

create index BkNameIdx on book(bookname)
  • 1

创建唯一索引:

create unique index UniqIdx on book(bookId)
  • 1

删除索引

使用ALTER TABLE 语句删除索引

alter table  表名 drop index 索引名
  • 1

使用DROP INDEX 语句删除索引

drop index 索引名 on 表名
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/655260
推荐阅读
相关标签
  

闽ICP备14008679号