首頁 > 軟體

SQL建立檢視的注意事項及說明

2023-02-08 22:02:51

檢視的建立和注意事項

如何建立檢視及注意事項

建立檢檢視的基本語法:

CREATE VIEW <檢視名稱>(<列名1>,<列名2>,...) AS 
<SELECT語句>
from  表名
group by 列名;-- 該語句可以選擇或者不寫該語句,兩者的區別就是是否有彙總

注意事項:

  • 檢視名稱後面的列的數量必須與select 語句裡面選擇的列的數量一致;否則會提示錯誤;
  • 當你建立了一個檢視後(同個檢視名字),若需要對檢視語句進行修改的話,需要先刪除舊的檢視,否則會提示已有檢視;
  • select 語句裡面的列與檢視裡面的列是一一對應的,檢視裡面的列名可以根據需要自定義命名;
  • 刪除檢視語法: drop view 檢視名稱

例子:

案例1. with group by

drop view profit;
create view profit (種類,售價, 進價,利潤)
As 
select product_type,sale_price,purchase_price,sale_price - purchase_price as profit
from product
group by product_type;

select * from profit;

結果如下:

案例2: without group by

drop view profit1;
create view profit1 (種類,售價, 進價,利潤)
As 
select product_type,sale_price,purchase_price,sale_price - purchase_price as profit
from product; 
select * from profit1;

結果如下:

修改檢視結構

修改檢視結構的基本語法如下:

ALTER VIEW <檢視名> AS <SELECT語句>
-- 例如:
ALTER VIEW profit
    AS
        SELECT product_type, sale_price
          FROM Product
         WHERE regist_date > '2009-09-11';

mysql檢視的作用(詳細)

  • 測試表:user有id,name,age,sex欄位
  • 測試表:goods有id,name,price欄位
  • 測試表:ug有id,userid,goodsid欄位

檢視的作用實在是太強大了,以下是我體驗過的好處:

作用一

提高了重用性,就像一個函數。如果要頻繁獲取user的name和goods的name。就應該使用以下sql語言。

範例:        

select a.name as username, b.name as goodsname from user as a, goods as b, ug as c where a.id=c.userid and c.goodsid=b.id;

但有了檢視就不一樣了,建立檢視other。

範例:        

create view other as select a.name as username, b.name as goodsname from user as a, goods as b, ug as c where a.id=c.userid and c.goodsid=b.id;

建立好檢視後,就可以這樣獲取user的name和goods的name。

範例:        

select * from other;

以上sql語句,就能獲取user的name和goods的name了。

作用二

對資料庫重構,卻不影響程式的執行。假如因為某種需求,需要將user拆房表usera和表userb,該兩張表的結構如下:

  • 測試表:usera有id,name,age欄位
  • 測試表:userb有id,name,sex欄位

這時如果php端使用sql語句:select * from user;那就會提示該表不存在,這時該如何解決呢。

解決方案:建立檢視。

以下sql語句建立檢視:

create view user as select a.name,a.age,b.sex from usera as a, userb as b where a.name=b.name;

以上假設name都是唯一的。此時php端使用sql語句:select * from user;就不會報錯什麼的。這就實現了更改資料庫結構,不更改指令碼程式的功能了。

作用三

提高了安全效能。可以對不同的使用者,設定不同的檢視。例如:某使用者只能獲取user表的name和age資料,不能獲取sex資料。則可以這樣建立檢視。

範例如下:

create view other as select a.name, a.age from user as a;

這樣的話,使用sql語句:select * from other; 最多就只能獲取name和age的資料,其他的資料就獲取不了了。

作用四

讓資料更加清晰。想要什麼樣的資料,就建立什麼樣的檢視。經過以上三條作用的解析,這條作用應該很容易理解了吧

總結

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com