码迷,mamicode.com
首页 > 其他好文 > 详细

37、对first_name创建唯一索引uniq_idx_firstname,对last_name创建普通索引idx_lastname

时间:2020-04-16 19:24:38      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:结构   arch   span   mes   describe   def   int   唯一索引   tle   

1、题目描述

针对如下表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

2、代码

CREATE UNIQUE INDEX uniq_idx_firstname ON actor(first_name);
CREATE INDEX idx_lastname ON actor(last_name);

 

 

 

 

37、对first_name创建唯一索引uniq_idx_firstname,对last_name创建普通索引idx_lastname

标签:结构   arch   span   mes   describe   def   int   唯一索引   tle   

原文地址:https://www.cnblogs.com/guoyu1/p/12715039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!