前述
知识点回顾:MySQL中IF()、IFNULL()、NULLIF()、ISNULL()函数的使用
题目描述
leetcode题目:1251. 平均售价
Code
select P.product_id,ifnull(round(sum(units * price) / sum(units), 2), 0) as average_price
from Prices P
left join UnitsSold U
on U.product_id = P.product_id and purchase_date between start_date and end_date
group by P.product_id
注意: