题目描述:
写出一个 SQL 查询语句,查找每种产品在各个商店中的价格。
可以以 任何顺序 输出结果。
查询结果格式如下例所示:
方法1:
主要思路:解题链接汇总
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 product_id