【學習】SQL基礎-015-視圖
1、本質:邏輯數據集,沒有真正數據
2、類型
簡單視圖:不使用函數,不使用聚合;一般可以接受DML
復雜視圖:使用函數和聚合;不能接受DML
3、原理
oracle 訪問 user_views 數據字典,找到視圖的子查詢并執行,返回數據;
訪問視圖,實際是訪問基表;
視圖是存放在數據字典中的一條子查詢。
4、創建
前提:create view 權限
語法:
參數:
force: 即使子查詢中明細表不存在,也創建視圖。
noforce: 默認值,如果明細表不存在,則引發錯誤。
with check option 加約束進行檢查,對視圖進行 dml 操作時,檢查創建時的 where 條件。 確保DML在特定范圍內操作
with read only 只能進行查詢,不能通過視圖修改基表。 禁止DML操作
5、應用例
查詢表空間的使用情況
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 不會刪除基表數據