Oracle with as 嵌套

偶尔善良 提交于 2020-11-09 20:27:31

oracle  with as可以理解为临时视图,可以极大的简化sql语句,并且支持嵌套使用。

With c3 As(Select * From v_tr_daily Where p_date=to_date('2019-05-21','yyyy-mm-dd'))
,c1 As(
Select type_id,dept_id,drill_dept,sum(mine_ore0) From c3
Where type_id=1 
Group By type_id,dept_id,drill_dept   
)
Select * From c1

 还可以用在insert语句中,如下:

insert into t1
With c3 As(Select * From v_tr_daily Where p_date=to_date('2019-05-21','yyyy-mm-dd'))
,c1 As(
Select type_id,dept_id,drill_dept,sum(mine_ore0) From c3
Where type_id=1 
Group By type_id,dept_id,drill_dept   
)
Select * From c1

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!