返回介绍

solution / 1700-1799 / 1777.Product's Price for Each Store / README

发布于 2024-06-17 01:03:14 字数 1893 浏览 0 评论 0 收藏 0

1777. 每家商店的产品价格

English Version

题目描述

表:Products

+-------------+---------+
| Column Name | Type  |
+-------------+---------+
| product_id  | int   |
| store     | enum  |
| price     | int   |
+-------------+---------+
在 SQL 中,(product_id,store) 是这个表的主键。
store 字段是枚举类型,它的取值为以下三种 ('store1', 'store2', 'store3') 。
price 是该商品在这家商店中的价格。

 

找出每种产品在各个商店中的价格。

可以以 任何顺序 输出结果。

返回结果格式如下例所示。

 

示例 1:

输入:
Products 表:
+-------------+--------+-------+
| product_id  | store  | price |
+-------------+--------+-------+
| 0       | store1 | 95  |
| 0       | store3 | 105   |
| 0       | store2 | 100   |
| 1       | store1 | 70  |
| 1       | store3 | 80  |
+-------------+--------+-------+
输出:
+-------------+--------+--------+--------+
| product_id  | store1 | store2 | store3 |
+-------------+--------+--------+--------+
| 0       | 95   | 100  | 105  |
| 1       | 70   | null   | 80   |
+-------------+--------+--------+--------+
解释:
产品 0 的价格在商店 1 为 95 ,商店 2 为 100 ,商店 3 为 105 。
产品 1 的价格在商店 1 为 70 ,商店 3 的产品 1 价格为 80 ,但在商店 2 中没有销售。

解法

方法一

# Write your MySQL query statement below
SELECT
  product_id,
  SUM(IF(store = 'store1', price, NULL)) AS store1,
  SUM(IF(store = 'store2', price, NULL)) AS store2,
  SUM(IF(store = 'store3', price, NULL)) AS store3
FROM Products
GROUP BY 1;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文