溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

【學(xué)習(xí)】SQL基礎(chǔ)-015-視圖

發(fā)布時(shí)間:2020-08-13 10:34:49 來(lái)源:ITPUB博客 閱讀:107 作者:Kevin_Weig 欄目:關(guān)系型數(shù)據(jù)庫(kù)
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ǔ)法:
          【學(xué)習(xí)】SQL基礎(chǔ)-015-視圖
    參數(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ù)
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI