首页 > 数据库技术 > 详细

数据库索引

时间:2017-07-23 00:22:16      阅读:303      评论:0      收藏:0      [点我收藏+]

一、建立索引

建立索引的一般格式:

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;

  

数据库索引

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!