首页 > 其他 > 详细

索引的创建和使用

时间:2018-03-30 14:34:21      阅读:207      评论:0      收藏:0      [点我收藏+]

使用T-sql语句创建索引

语法

if exists select * from sysindexes where name=‘索引名’)

go

drop index 表名.索引名

create [unique][clusterednonclustered] index 索引名 on 表名 (列名)[with fillfactor=x]

unique:唯一索引

clusterednonclustered:聚集索引或非聚集索引

fillfactor:充因子(系数):指定一个0-100之间的值,表示索引页填充的百分比

例如:

Create unique clustered index CL_xinxi on xinxiid

创建 唯一 聚集索引 cl_xinxi xinxi表上id

Create nonclustered index…………

查看索引的方式

使用系统的存储过程查看错音

EXEC sp_helpindex 表名

索引的创建和使用

原文:https://www.cnblogs.com/xiaowie/p/8675985.html

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