with查詢語句不是以select開始的,而是以「with」關鍵字開頭
可認為在真正進行查詢之前預先構造了乙個臨時表,之後便可多次使用它做進一步的分析和處理
with clause方法的優點
增加了sql的易讀性,如果構造了多個子查詢,結構會更清晰;更重要的是:「一次分析,多次使用」,這也是為什麼會提供效能的地方,達到了「少讀」的目標。
第一種使用子查詢的方法表被掃瞄了兩次,而使用with clause方法,表僅被掃瞄一次。這樣可以大大的提高資料分析和查詢的效率。
另外,觀察with clause方法執行計畫,其中「sys_temp_***x」便是在執行過程中構造的中間統計結果臨時表。
語法:
with tempname as (select ....)
select ...
–針對乙個別名
with tmp as (select * from tb_name)
–針對多個別名
with
tmp as (select * from tb_name),
tmp2 as (select * from tb_name2),
t*** as (select * from tb_name3),
…–相當於建了個e臨時表
with e as (select * from scott.emp e where e.empno=7499)
select * from e;
–相當於建了e、d臨時表
with
e as (select * from scott.emp),
d as (select * from scott.dept)
select * from e, d where e.deptno = d.deptno;
複製**
其實就是把一大堆重複用到的sql語句放在with as裡面,取乙個別名,後面的查詢就可以用它,這樣對於大批量的sql語句起到乙個優化的作用,而且清楚明了。
向一張表插入資料的 with as 用法:
insert into table2
with
s1 as (select rownum c1 from dual connect by rownum <= 10),
s2 as (select rownum c2 from dual connect by rownum <= 10)
select a.c1, b.c2 from s1 a, s2 b where…;
with as 相當於虛擬檢視。
with as短語,也叫做子查詢部分(subquery factoring),可以讓你做很多事情,定義乙個sql片斷,該sql片斷會被整個sql語句所用到。
有的時候,是為了讓sql語句的可讀性更高些,也有可能是在union all的不同部分,作為提供資料的部分。
特別對於union all比較有用。
因為union all的每個部分可能相同,但是如果每個部分都去執行一遍的話,則成本太高,所以可以使用with as短語,則只要執行一遍即可。
如果with as短語所定義的表名被呼叫兩次以上,則優化器會自動將with as短語所獲取的資料放入乙個temp表裡,如果只是被呼叫一次,則不會。
而提示materialize則是強制將with as短語裡的資料放入乙個全域性臨時表裡。
很多查詢通過這種方法都可以提高速度。
with
sql1 as (select to_char(a) s_name from test_tempa),
sql2 as (select to_char(b) s_name from test_tempb where not exists (select s_name from sql1 where rownum=1))
select * from sql1
union all
select * from sql2
union all
select 『no records』 from dual
where not exists (select s_name from sql1 where rownum=1)
and not exists (select s_name from sql2 where rownum=1);
with as優點
增加了sql的易讀性,如果構造了多個子查詢,結構會更清晰;
更重要的是:「一次分析,多次使用」,這也是為什麼會提供效能的地方,達到了「少讀」的目標
SQL查詢中的UNION ALL和UNION區別
和union all 的重要的區別關於對重複結果的處理。union 在合併子查詢重複的記錄只保留一條,而 union all 並不合併子查詢的重覆記錄。現舉例說明它們之間的區別。示例1 查詢職位為 clerk 員工資訊。sql select empno,ename,job deptno from e...
資料庫left join中on和where條件區別
oracle的left join中on和where的區別 1,說明 oracle資料庫在通過連線兩張或多張表來返回記錄時,都會生成一張中間的臨時表,然後再將這張臨時表返回給使用者。在使用leftjion時,on和where條件的區別如下 1 on條件是在生成臨時表時使用的條件,它不管on中的條件是否...
資料庫中varchar和nvarchar的區別
資料庫中varchar和nvarchar的區別 1 varchar是以位元組為單位儲存的,而nvarchar是以字元 佔兩個位元組 為單位儲存的。也就是說,varchar用乙個位元組儲存乙個英文本母,用兩個位元組儲存乙個中文漢字,而nvarchar得用兩個位元組儲存乙個英文本母,用兩個位元組儲存乙個...