前言
练习sql语句,所有题目来自于力扣(https://leetcode.cn/problemset/database/)的免费数据库练习题。
今日题目:
1795.每个产品在不同商店的价格
表:Products
列名 | 类型 |
---|---|
product_id | int |
store1 | int |
store2 | int |
store3 | int |
在 SQL 中,这张表的主键是 product_id(产品Id)。每行存储了这一产品在不同商店 store1, store2, store3 的价格。如果这一产品在商店里没有出售,则值将为 null。
请你重构 Products 表,查询每个产品在不同商店的价格,使得输出的格式变为(product_id, store, price) 。如果这一产品在商店里没有出售,则不输出这一行。
输出结果表中的 顺序不作要求 。
我那不值一提的想法:
- 首先梳理表内容,题干一共给了一张产品表,记录了产品id,以及产品在不同商店的价格
- 其次分析需求,需要我们重构数据表,将三列商店数据合并成一列商店数据。
- 我的想法就是利用union将几个商店的结果连接起来。
select product_id,"store1" as store,store1 as price
from Products
where store1 is not null
union
select product_id,"store2" as store,store2 as price
from Products
where store2 is not null
union
select product_id,"store3" as store,store3 as price
from Products
where store3 is not null
后面我看了下题解,有专门的总结,一般行转列使用sum(if())
+groupby
,列转行也就是题干中的要求一般使用union/union all
。
结果:
总结:
能运行就行。