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);
这个语句的查询结果还能用另一种方式实现吗? 展开
from products outer
where price >
(select avg(price) from products inner
where inner.product_type_id = outer.product_type_id);
这个语句的查询结果还能用另一种方式实现吗? 展开
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 大于平均值的产品
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
才发现 楼上详细了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询