数据库SQL实践37:对first_name创建唯一索引uniq_idx_firstname

思路:

用create函数创建唯一索引和普通索引。

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

mysql数据库还可以

alter table actor add unique index uniq_idx_firstname(first_name);
alter table actor add index idx_lastname(last_name)

猜你喜欢

转载自blog.csdn.net/weixin_43160613/article/details/84560571
今日推荐