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(数据库)- 每家商店的产品价格的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode(数据库)- 每个产品在不同商店的价格

Magento:从另一家商店获取产品价格?

mysql显示商店最便宜的产品价格

SQL-查找商店中最小产品的价格

php 根据商店ID更改产品价格

CCF-CSP 201809 赛题训练