LeetCode(数据库)- 每家商店的产品价格
Posted 程序员牧码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode(数据库)- 每家商店的产品价格相关的知识,希望对你有一定的参考价值。
题目链接:点击打开链接
题目大意:略。
解题思路:略。
AC 代码
-- 解决方案(1)
select
product_id,
sum(if(store='store1',price,null)) store1,
sum(if(store='store2',price,null)) store2,
sum(if(store='store3',price,null)) store3
from
Products
group by
1
-- 解决方案(2)
select
distinct p.product_id, a.price store1, b.price store2, c.price store3
from
Products p
left join
(select * from Products where store = 'store1') a on p.product_id = a.product_id
left join
(select * from Products where store = 'store2') b on p.product_id = b.product_id
left join
(select * from Products where store = 'store3') c on p.product_id = c.product_id
以上是关于LeetCode(数据库)- 每家商店的产品价格的主要内容,如果未能解决你的问题,请参考以下文章