题解 | 分析各产品线在特定时间段内的销售情况
分析各产品线在特定时间段内的销售情况
https://www.nowcoder.com/practice/8a002dd7888b4247b6ac9228577bdbc3
with a as (
select product_line, channel_id, sum(sale_amount) as total_sale_amount, count(sale_id) as total_sale_quantity
from sales_data join oppo_products using(product_id)
group by product_line, channel_id
)
select product_line, region, channel_name, total_sale_amount, total_sale_quantity
from a join sales_channels using(channel_id)
order by product_line, channel_id
EASY
