欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL中的唯一索引的简单学习教程

程序员文章站 2024-02-26 17:37:10
mysql 唯一索引unique一般用于不重复数据字段了我们经常会在数据表中的id设置为唯一索引unique,下面我来介绍如何在mysql中使用唯一索引unique吧。...

mysql 唯一索引unique一般用于不重复数据字段了我们经常会在数据表中的id设置为唯一索引unique,下面我来介绍如何在mysql中使用唯一索引unique吧。
创建唯一索引的目的不是为了提高访问速度,而只是为了避免数据出现重复。唯一索引可以有多个但索引列的值必须唯一,索引列的值允许有空值。如果能确定某个数据列将只包含彼此各不相同的值,在为这个数据列创建索引的时候就应该使用关键字unique。

把它定义为一个唯一索引。


创建表时直接设置:

drop table if exists `student`;
create table `student` (
`stu_id` int(11) not null auto_increment,
`name` varchar(255) default null,
primary key (`stu_id`),
unique key `uk_student_name` (`name`)
) engine=innodb auto_increment=12 default charset=utf8;

创建唯一索引:

create unique index uk_student_name on student (name);

建表后添加约束:

alter table student add constraint uk_student_name unique (name);

如果不需要唯一索引,则可以这样删除

mysql> alter table student drop index name; 

query ok, 0 rows affected (0.85 sec)


如果要增加索引

alter table user add unique index(user_id,user_name);