题解 | #对first_name创建唯一索引#

对first_name创建唯一索引uniq_idx_firstname

https://www.nowcoder.com/practice/e1824daa0c49404aa602cf0cb34bdd75

方法1.Create创建索引

create unique index uniq_idx_firstname on actor (first_name);
create index idx_lastname on actor (last_name);

方法2.Alter创建索引

alter table actor

add unique uniq_idx_firstname(first_name);

alter table actor

add index idx_lastname(last_name);

全部评论

相关推荐

Cherrycola01:0实习 0项目 约等于啥也没有啊 哥们儿这简历认真的吗
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务