LeetCode MySQL 1777. 每家商店的产品价格(行列转换)
生活随笔
收集整理的這篇文章主要介紹了
LeetCode MySQL 1777. 每家商店的产品价格(行列转换)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 1. 題目
- 2. 解題
1. 題目
表:Products
+-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | store | enum | | price | int | +-------------+---------+(product_id,store) 是這個表的主鍵。
store 字段是枚舉類型,它的取值為以下三種 (‘store1’, ‘store2’, ‘store3’) 。
price 是該商品在這家商店中的價格。
寫出一個 SQL 查詢語句,查找每種產品在各個商店中的價格。
可以以 任何順序 輸出結果。
查詢結果格式如下例所示:
Products 表:
+-------------+--------+-------+ | product_id | store | price | +-------------+--------+-------+ | 0 | store1 | 95 | | 0 | store3 | 105 | | 0 | store2 | 100 | | 1 | store1 | 70 | | 1 | store3 | 80 | +-------------+--------+-------+Result 表:
+-------------+--------+--------+--------+ | 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 中沒有銷售。
來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/products-price-for-each-store
著作權歸領扣網絡所有。商業轉載請聯系官方授權,非商業轉載請注明出處。
2. 解題
# Write your MySQL query statement below select product_id, max(case when store='store1' then price else null end) store1, max(case when store='store2' then price else null end) store2, max(case when store='store3' then price else null end) store3 from Products group by product_id514 ms 0 B MySQL
我的CSDN博客地址 https://michael.blog.csdn.net/
長按或掃碼關注我的公眾號(Michael阿明),一起加油、一起學習進步!
總結
以上是生活随笔為你收集整理的LeetCode MySQL 1777. 每家商店的产品价格(行列转换)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: fastapi 用户指南(路径参数、查询
- 下一篇: fastapi 响应模型 / 响应状态码