--視圖的主意點:不能和表的名稱相同,如果某一列為函數,表達式,常量或者與來自多張表的列名相同,必須為列定義名稱,不能在試圖上創建索引
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
--使用視圖的優點:視點集中,簡化操作,定制數據,合并分割數據,安全性
--索引:是一個單獨的,物理的數據結構,是數據庫的一張表中所包含的值得列表,其中注明了表的各個值所在的存儲位置。
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
--創建索引的原因主要是為了加大檢索的速度
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

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