1. 程式人生 > >MySQL給字段唯一索引的三種方法

MySQL給字段唯一索引的三種方法

const color varchar clas 約束 weight mysql ODB arch

建表時添加

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;

建表後添加1

create unique
index UK_student_name on student (name);

建表後添加2

建表後添加約束

alter table student add constraint uk_student_name unique (name);

MySQL給字段唯一索引的三種方法