码迷,mamicode.com
首页 > 数据库 > 详细

数据库索引

时间:2017-07-23 00:52:12      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:unique   删除   index   ext   des   creat   表名   索引   查询   

一、建立索引

建立索引的一般格式:

creat [unique][cluster] index <索引名称>

on <表名>(<列名>[<次序>][,<列名>[<次序>]]...);

unique表明此索引的每一个索引值只对应唯一的数据记录;

cluster表名要建立的索引是聚簇索引(聚簇索引查询效率相对更好,但是对于经常更新的列不宜建立聚簇索引且一个基本表上最多只能建立一个聚簇索引)

--聚簇索引
creat cluster index student_sname on studnet(sname);
--unique索引
creat unique index student_sno on student(sno);
creat unique index sc_no on sc(sno asc,cno desc);

二、删除索引

删除索引的一般格式:

drop index <索引名称>;

--删除索引
drop index student_sname;

  

数据库索引

标签:unique   删除   index   ext   des   creat   表名   索引   查询   

原文地址:http://www.cnblogs.com/by-lhc/p/7223336.html

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