sql语句中withas的⽤法
–针对⼀个别名
with tmp as (select * from tb_name)
–针对多个别名
exists的用法with
tmp as (select * from tb_name),
tmp2 as (select * from tb_name2),
tmp3 as (select * from tb_name3),
–相当于建了个e临时表
with e as (select * p e pno=7499)
select * from e;
–相当于建了e、d临时表
with
e as (select * p),
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…;
select s1.sid, s2.sid from s1 ,s2需要有关联条件,不然结果会是笛卡尔积。
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语句的优点:
(1). SQL可读性增强。⽐如对于特定with⼦查询取个有意义的名字等。
(2)、with⼦查询只执⾏⼀次,将结果存储在⽤户临时表空间中,可以引⽤多次,增强性能。
举例:在进⾏导⼊EXCEL的过程中,有时候,需要将数据存储在临时表中,当下⼀次在进⾏导⼊的时候,进⾏清除临时表的数据,但是这时候,有时候发⽣并发问题的话,两个⽤户可能会分别操作对⽅的数据,所以,可能造成混乱,但是可以使⽤WITH函数和UNION语句拼接⼀个SQL语句,存储在SESSION中,当需要导出错误信息的时候,可以使⽤该语句构造数据。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。