题解 | #对first_name创建唯一索引uniq_idx_firstname#
对first_name创建唯一索引uniq_idx_firstname
http://www.nowcoder.com/practice/e1824daa0c49404aa602cf0cb34bdd75
知识点
- 创建唯一索引:create unique index 索引名 on 表名(列名1,列名2,……)
- 创建普通索引:create index 索引名 on 表名(列名1,列名2,……)
代码
create unique index uniq_idx_firstname on actor(first_name);
create index idx_lastname on actor(last_name);