SQL37 对first_name创建唯一索引uniq_idx_firstname

描述

针对如下表actor结构创建索引:
(注:在 SQLite 中,除了重命名表和在已有的表中添加列,ALTER TABLE 命令不支持其他操作,
mysql支持ALTER TABLE创建索引)
CREATE TABLE actor  (
   actor_id  smallint(5)  NOT NULL PRIMARY KEY,
   first_name  varchar(45) NOT NULL,
   last_name  varchar(45) NOT NULL,
   last_update  datetime NOT NULL);
对first_name创建唯一索引uniq_idx_firstname,对last_name创建普通索引idx_lastname
 
MySQL
alter table actor add unique uniq_idx_firstname(first_name);
alter table actor add index idx_lastname(last_name);

Sqlite

CREATE UNIQUE INDEX uniq_idx_firstname on actor (first_name);
CREATE INDEX idx_lastname ON actor (last_name);
posted @ 2021-11-03 15:13  杜嘟嘟  阅读(71)  评论(0编辑  收藏  举报