(視圖,索引)
-視圖的主意點(diǎn):不能和表的名稱相同,如果某一列為函數(shù),表達(dá)式,常量或者與來自多張表的列名相同,必須為列定義名稱,不能在試圖上創(chuàng)建索引
if exists(select 1 from sys.sysobjects where [name]='view_recordInfo')
?? ?drop view view_recordInfo
go
create view view_recordInfo
as
?? ?select 記錄編號=r.Recordld,會員卡號=r.BeginTime,電腦編號=p.PCId?
?? ?from recordInfo r
?? ?inner join PCInfo p
?? ?on r.PCId=p.PCId
go
select * from view_recordInfo
--使用視圖的優(yōu)點(diǎn):視點(diǎn)集中,簡化操作,定制數(shù)據(jù),合并分割數(shù)據(jù),安全性
--索引:是一個單獨(dú)的,物理的數(shù)據(jù)結(jié)構(gòu),是數(shù)據(jù)庫的一張表中所包含的值得列表,其中注明了表的各個值所在的存儲位置。
if exists(select 1 from sys.sysindexes where [name] = 'index_cardInfo_CardBalance')
?? ?drop index cardInfo.index_cardInfo_CardBalance
go
create nonclustered index index_cardInfo_CardBalance
?? ?on cardInfo(CardBalance)
?? ?with
?? ??? ?fillfactor =40
go
--使用索引查詢
select * from cardInfo
?? ?with(index =index_cardInfo_CardBalance)
?? ?where CardBalance between 10 and 100
go
--創(chuàng)建索引的原因主要是為了加大檢索的速度
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯(lián)系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
