1. 程式人生 > >37. 對first_name建立唯一索引uniq_idx_firstname

37. 對first_name建立唯一索引uniq_idx_firstname

題目描述

針對如下表actor結構建立索引:
CREATE TABLE IF NOT EXISTS actor (
actor_id smallint(5) NOT NULL PRIMARY KEY,
first_name varchar(45) NOT NULL,
last_name varchar(45) NOT NULL,
last_update timestamp NOT NULL DEFAULT (datetime('now','localtime')))
對first_name建立唯一索引uniq_idx_firstname,對last_name建立普通索引idx_lastname

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

很奇怪,有時候某個地方多個空格就不能通過。。。