mysql中檢視的解釋
作用一:
提高了重用性,就像一個函式。如果要頻繁獲取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
建立好檢視後,就可以這樣獲取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的資料,其他的資料就獲取不了了。
作用四:
讓資料更加清晰,想要什麼樣的資料,就建立什麼樣的檢視。經過以上三條作用的解析,這條作用應該很容易理解了吧。