sql-server--索引

SQL Server****提供了五种索引类型,它们分别是
Ø 唯一索引
Ø 主键索引
Ø 聚集索引 Clustered Index
Ø 非聚集索引 Nonclustered Index
Ø 视图索引

sql 复制代码
--tb_student表的sno列创建索引
create index ix_sno on tb_student(sno)

--在tb_student表中的sex和birthday列创建组合索引
create index ix_sex on tb_student(sex,birthday)


--在tb_student表中的sn列创建唯一索引。
create unique index ix_xm
on tb_student(sn)

--测试唯一索引
select * from tb_student
where sn='曲筱绡'
insert  into  tb_student  (sno, sn,sex)
values  ('1422170','曲筱绡','女') 

删除索引
¯ 使用 drop index 语句删除索引

drop index**<表名.索引名称>**

drop index索引名称on表名

相关推荐
阳冬园4 分钟前
mysql数据库 主从同步
数据库·主从同步
Arenaschi9 分钟前
在Tomcat中部署应用时,如何通过域名访问而不加端口号
运维·服务器
小张认为的测试10 分钟前
Linux性能监控命令_nmon 安装与使用以及生成分析Excel图表
linux·服务器·测试工具·自动化·php·excel·压力测试
XiaoH23315 分钟前
培训机构Day15
sql·mysql
waicsdn_haha17 分钟前
Java/JDK下载、安装及环境配置超详细教程【Windows10、macOS和Linux图文详解】
java·运维·服务器·开发语言·windows·后端·jdk
良许Linux32 分钟前
0.96寸OLED显示屏详解
linux·服务器·后端·互联网
蜜獾云42 分钟前
docker 安装雷池WAF防火墙 守护Web服务器
linux·运维·服务器·网络·网络安全·docker·容器
小屁不止是运维43 分钟前
麒麟操作系统服务架构保姆级教程(五)NGINX中间件详解
linux·运维·服务器·nginx·中间件·架构
Hacker_Oldv1 小时前
WPS 认证机制
运维·服务器·wps
bitcsljl1 小时前
Linux 命令行快捷键
linux·运维·服务器