leetcode简单之1795.每个产品在不同商店的价格

表:Products
Column NameTypeproduct_idintstore1intstore2intstore3int
这张表的主键是product_id(产品Id)。 每行存储了这一产品在不同商店store1, store2, store3的价格。 如果这一产品在商店里没有出售,则值将为null。
问题
请你重构 Products 表,查询每个产品在不同商店的价格,使得输出的格式变为(product_id, store, price) 。如果这一产品在商店里没有出售,则不输出这一行。 输出结果表中的 顺序不作要求 。
示例
输入:
Products table:
product_idstore1store2store3095100105170null80
输出:
product_idstoreprice0store1950store21000store31051store1701s

leetcode简单之1795.每个产品在不同商店的价格最先出现在Python成神之路

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/29184.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>