博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
索引的创建和使用
阅读量:5159 次
发布时间:2019-06-13

本文共 474 字,大约阅读时间需要 1 分钟。

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

你可能感兴趣的文章
线段树区间修改,区间求和,区间求平方和,最大最小值
查看>>
struts2请求过程源码分析
查看>>
黑马day14 过滤器概述&生命周期&运行过程
查看>>
SVN文件排除
查看>>
CF Gym 100637G \#TheDress (水)
查看>>
live555源码研究(四)------UserAuthenticationDatabase类
查看>>
C#net多线程多文件压缩下载
查看>>
maven:pom.xml 搭建spring框架基本配置
查看>>
[Python Study Notes]CS架构远程访问获取信息--SERVER端v2.0
查看>>
基于OpenStack构建企业私有云(4-2)Nova_计算节点
查看>>
linux 查看系统信息命令(比较全)
查看>>
Linux Makefile 教程(转)
查看>>
___pInvalidArgHandler already defined in LIBCMTD.lib(invarg.obj)
查看>>
A计划 HDU - 2102
查看>>
Ajax完整结构和删除
查看>>
(诊断)git review时出现fatal: ICLA contributor agreement requires current contact information.错误...
查看>>
zz linux 下查看局域网内所有存活主机和MAC进址
查看>>
登录拦截功能
查看>>
proxychains 安装
查看>>
hdu 3044 Dog and dog
查看>>