oracle关联子查询,求大侠帮忙说一下这个语句里面是怎么走的,距离说明,谢谢!

selectproduct_id,product_type_id,name,pricefromproductsouterwhereprice>(selectavg(pri... select product_id,product_type_id,name,price
from products outer
where price >
(select avg(price) from products inner
where inner.product_type_id = outer.product_type_id);
这个语句的查询结果还能用另一种方式实现吗?
展开
 我来答
Meteor50
2013-08-24
知道答主
回答量:9
采纳率:0%
帮助的人:8.3万
展开全部
他是先求出(select avg(price) from products inner
where inner.product_type_id = outer.product_type_id) 取平均
然后再把 price分别拿出来 与平均工资比较,然后取出大于平均price的行
匿名用户
2013-08-23
展开全部

先统计出每个 product_type 的平均值,然后再和 product 表中的每个产品进行比较,找出大于平均值的产品,如下:

select c.product_id, c.product_type_id, c.name, c.price
  from (select a.product_type_id, avg(a.price) favgprice  -- 统计出每个 product_type 的平均值
          from products a
         group by a.product_type_id) b,
       products c
 where b.product_type_id = c.product_type_id
   and c.price > b.favgprice    -- 统计 product_type 大于平均值的产品
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
魔兽鬼F玩家
2013-08-23 · TA获得超过291个赞
知道答主
回答量:37
采纳率:0%
帮助的人:19.8万
展开全部
才发现 楼上详细了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式