熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> SQL Server >> 正文

SQL Server 2000的視圖中必須小心使用*符號[1]

2022-06-13   來源: SQL Server 

  有些朋友看到這個標題可能會有疑問難道在視圖中使用*符號還有何要注意的地方嗎?對於這個問題我們先不必回答先看一下例子吧

  我這裡使用的數據庫是SqlServer自帶的Northwind這樣方便大家自己私下裡測試首先創建兩個視圖視圖的腳本如下

  視圖 vCustomersA
  create view vCustomersA
  as
  select CustomerID CompanyNameContactNameContactTitle
  AddressCityRegionPostalCodeCountryPhoneFax
  from dboCustomers
  go

  視圖 vCustomersB
  create view vCustomersB
  as
  select * from vCustomersA
  go

  然後使用這兩個視圖查詢客戶ID為ALFKI的資料查詢語句如下

  select * from vCustomersA where CustomerID = ALFKI
  select * from vCustomersB where CustomerID = ALFKI

[]  []  []  []  []  


From:http://tw.wingwit.com/Article/program/SQLServer/201311/22386.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.