oracle select subquery (with)-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3977515
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2008-06-28 09:01:06

sql> @select_with.sql

dname dept_total
-------------- ----------

research 10875

sql> l
  1 with
  2 dept_cost as
  3 (
  4 select d.dname, sum(e.sal) dept_total
  5 from emp e, dept d
  6 where e.deptno = d.deptno
  7 group by d.dname
  8 ),
  9 avg_cost as
 10 (
 11 select sum(dept_total)/count(*) avg
 12 from dept_cost
 13 )
 14 select dname, dept_total from dept_cost
 15 where dept_total > (select avg from avg_cost)
 16* order by dname


subquery factoring: example the following statement creates the query names dept_costs and avg_cost for the initial query block containing a join, and then uses the query names in the body of the main query.

learn more:
阅读(2464) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图