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

对first_name创建唯一索引uniq_idx_firstname

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

两种方法

  1. create (unique) index 索引名 on 表名(列名)
-- 创建唯一索引
create unique index uniq_idx_firstname on actor(first_name);
-- 创建普通索引
create index idx_lastname on actor(last_name);
  1. alter table 表名 add (unique) index 索引名(列名)
alter table actor add unique index uniq_idx_firstname(first_name);
alter table actor add index idx_lastname(last_name);
SQL练习 文章被收录于专栏

已完成牛客的SQL练习。接下来是算法的练习

全部评论

相关推荐

牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务