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

索引SQL

时间:2015-03-19 23:39:44      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

--索引:就是为了查询提高效率的。相当于一个引用,可以快速找到数据的位置
--聚集索引:索引的顺序就对应着内容的顺序,所以聚集索引意味着排序
--非聚集索引:索引的顺序和内容的顺序没有本质的关联
--语法:
--create clustered|nonclustered index IX_名称
--on 表(列)
if exists (select * from sysindexes where name=‘ix_studentname‘)
drop index student.ix_studentname
create nonclustered index ix_studentname
on student(studentname)

索引SQL

标签:

原文地址:http://www.cnblogs.com/dianshen520/p/4352035.html

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