您的位置:首页 > 数据库

SQL 学习笔记之索引

2010-01-29 22:28 274 查看
----use pubs-sales
-----创建索引
create index index_name
on authors(au_lname)
--创建索引后表中所有的数据跟之前没有区别
select * from authors
--单独查索引列
select au_lname from authors
--强制使用非簇集索引
select * from authors with(index(index_name))
--多字段非簇集索引
create index index_phoneaddress on authors(phone,address)
select * from authors with(index(index_phoneaddress))
---使用clusterde创建簇集索引
--主键默认是簇集索引,一个表只能有一个簇集索引,所以先去掉auidind
Drop index authors.UPKCL_auidind
create clustered index clusteredindex_name
on authors(au_lname)
--销毁索引
drop index authors.index_name
drop index authors.clusteredindex_name
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: