1.为数据表t1的id字段创建唯一索引,索引名为id_index
create table t1( id int, unique index id_index(id));
2.验证
show create table t1 \G
这久表明唯一索引已经创建好了