相关内容
–针对一个别名
with tmp as (select * from tb_name)
–针对多个别名
with
tmp as (select * from tb_name),
tmp2 as (select * from tb_name2),
tmp3 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;
下一个:withas用法
PPT模板免费下载:商务PPT模板,中国风PPT模板 ,关于爱情的PPT模板,国内国外经典PPT模板,古典PPT模板,时尚幻灯片模板,卡通背景PPT模板,艺术设计PPT模板等;站内所有PowerPoint、WPS幻灯片模板免费分享下载!
2026 © 素材王(SuCaiWang.Net) 粤ICP备2021150159号