mysql添加唯一索引+普通索引
对first_name创建唯一索引uniq_idx_firstname
http://www.nowcoder.com/questionTerminal/e1824daa0c49404aa602cf0cb34bdd75
使用 mysql alter 创建索引,代码如下:
alter table actor add unique uniq_index_firstname (first_name); alter table actor add index idx_lastname(last_name);
结果没通过。。