sqlserver 叢集索引和非叢集索引執行個體

來源:互聯網
上載者:User

create database myIndexDemo
go
use myIndexDemo
go
create table ABC
(
A int not null,
B char(10),
C varchar(10)
)
go
insert into ABC
select 1,'B','C'
union
select 5,'B','C'
union
select 7,'B','C'
union
select 9,'B','C'
go

select * from ABC

--在ABC表上建立叢集索引
create clustered index CLU_ABC
on ABC(A)
GO

--查看索引
sp_helpIndex ABC

--插入資料
insert into ABC
values(2,'B','C')

--因為有叢集索引所以整個表的物理結構發生了變化
--此時按照該索引查詢的內容為:
select * from ABC WITH(index = CLU_ABC) WHERE A>1 AND A<5

--刪除索引後
Drop index ABC.CLU_ABC

--查詢內容物理順序還是按照順序的
select * from ABC

--在ABC表上建立非叢集索引
create nonclustered index NONCLU_ABC
on ABC(A)

--查看索引
sp_helpIndex abc

--插入資料
insert into ABC
values(4,'B','C')

--因為有叢集索引所以整個表的物理結構發生了變化
--此時查詢的內容為:
select * from ABC WITH(index = NONCLU_ABC)

--刪除索引後
Drop index ABC.NONCLU_ABC

--查詢內容物理順序是按照插入的順序
select * from ABC

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.