1. 程式人生 > >資料庫SQL實踐37:對first_name建立唯一索引uniq_idx_firstname

資料庫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)