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

索引的创建和使用

时间:2018-03-30 14:41:24      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:help   dex   聚集   指定   bsp   log   mil   表示   语法   

使用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 表名

索引的创建和使用

标签:help   dex   聚集   指定   bsp   log   mil   表示   语法   

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

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