【學(xué)習(xí)】SQL基礎(chǔ)-015-視圖
1、本質(zhì):邏輯數(shù)據(jù)集,沒(méi)有真正數(shù)據(jù)
2、類型
簡(jiǎn)單視圖:不使用函數(shù),不使用聚合;一般可以接受DML
復(fù)雜視圖:使用函數(shù)和聚合;不能接受DML
3、原理
oracle 訪問(wèn) user_views 數(shù)據(jù)字典,找到視圖的子查詢并執(zhí)行,返回?cái)?shù)據(jù);
訪問(wèn)視圖,實(shí)際是訪問(wèn)基表;
視圖是存放在數(shù)據(jù)字典中的一條子查詢。
4、創(chuàng)建
前提:create view 權(quán)限
語(yǔ)法:
參數(shù):
force: 即使子查詢中明細(xì)表不存在,也創(chuàng)建視圖。
noforce: 默認(rèn)值,如果明細(xì)表不存在,則引發(fā)錯(cuò)誤。
with check option 加約束進(jìn)行檢查,對(duì)視圖進(jìn)行 dml 操作時(shí),檢查創(chuàng)建時(shí)的 where 條件。 確保DML在特定范圍內(nèi)操作
with read only 只能進(jìn)行查詢,不能通過(guò)視圖修改基表。 禁止DML操作
5、應(yīng)用例
查詢表空間的使用情況
create view tablesp_usage as
select a.tablespace_name as tablespace_name,
to_char(a.total/1024/1024,99999999) as total_mb,
to_char((a.total-b.free)/1024/1024,99999999) use_mb,
to_char(b.free/1024/1024,99999999) as free_mb,
to_char(((total-free)/total)*100,999.99) as "Used %"
from
(select tablespace_name,sum(bytes) as total from dba_data_files
group by tablespace_name) a,
(select tablespace_name,sum(bytes) as free from dba_free_space
group by tablespace_name) b
where a.tablespace_name=b.tablespace_name order by 5 desc;
6、刪除
drop view 不會(huì)刪除基表數(shù)據(jù)