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

对first_name创建唯一索引uniq_idx_firstname

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

#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);

# create (unique) index 索引名 on 表名(列名)
#创建唯一索引
create unique index uniq_idx_firstname on actor(first_name);
#创建普通索引
create index idx_lastname on actor(last_name)


全部评论

相关推荐

Aurora23:属于挂一半,暂时进池子了,隔一段时间没有其他组捞的话就彻底结束了
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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