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的數據,其他的數據就獲取不了了。
作用四:
讓數據更加清晰。想要什麼樣的數據,就創建什麼樣的視圖。經過以上三條作用的解析,這條作用應該很容易理解了吧
※ubuntu更改環境變數的幾種方式
※scrollView滾動視圖實現商城模塊(附代碼)
TAG:程序員小新人學習 |