【LeetCode】1251. 平均售价

表:Prices

复制代码
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| product_id    | int     |
| start_date    | date    |
| end_date      | date    |
| price         | int     |
+---------------+---------+
(product_id,start_date,end_date) 是 prices表的主键(具有唯一值的列的组合)。
prices表的每一行表示的是某个产品在一段时期内的价格。
每个产品的对应时间段是不会重叠的,这也意味着同一个产品的价格时段不会出现交叉。

表:UnitsSold

复制代码
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| product_id    | int     |
| purchase_date | date    |
| units         | int     |
+---------------+---------+
该表可能包含重复数据。
该表的每一行表示的是每种产品的出售日期,单位和产品 id。

编写解决方案以查找每种产品的平均售价。average_price 应该 四舍五入到小数点后两位

返回结果表 无顺序要求

结果格式如下例所示。

示例 1:

复制代码
输入:
Prices table:
+------------+------------+------------+--------+
| product_id | start_date | end_date   | price  |
+------------+------------+------------+--------+
| 1          | 2019-02-17 | 2019-02-28 | 5      |
| 1          | 2019-03-01 | 2019-03-22 | 20     |
| 2          | 2019-02-01 | 2019-02-20 | 15     |
| 2          | 2019-02-21 | 2019-03-31 | 30     |
+------------+------------+------------+--------+
UnitsSold table:
+------------+---------------+-------+
| product_id | purchase_date | units |
+------------+---------------+-------+
| 1          | 2019-02-25    | 100   |
| 1          | 2019-03-01    | 15    |
| 2          | 2019-02-10    | 200   |
| 2          | 2019-03-22    | 30    |
+------------+---------------+-------+
输出:
+------------+---------------+
| product_id | average_price |
+------------+---------------+
| 1          | 6.96          |
| 2          | 16.96         |
+------------+---------------+
解释:
平均售价 = 产品总价 / 销售的产品数量。
产品 1 的平均售价 = ((100 * 5)+(15 * 20) )/ 115 = 6.96
产品 2 的平均售价 = ((200 * 15)+(30 * 30) )/ 230 = 16.96
sql 复制代码
select
Prices.product_id,
ifnull(round(sum(price*units)/sum(units),2),0) as average_price
from
Prices left join UnitsSold 
on Prices.product_id=UnitsSold.product_id
and UnitsSold.purchase_date between Prices.start_date and Prices.end_date
group by Prices.product_id
相关推荐
.柒宇.2 小时前
力扣hot100----15.三数之和(java版)
java·数据结构·算法·leetcode
sg_knight3 小时前
MySQL 空间索引(SPATIAL)详解:地理位置数据的高效查询利器
数据库·mysql·database·索引·关系型数据库·空间索引·spatial
苹果醋36 小时前
element-ui源码阅读-样式
java·运维·spring boot·mysql·nginx
程序员阿鹏6 小时前
56.合并区间
java·数据结构·算法·leetcode
小至尖尖6 小时前
fastdbchkrep项目(数据库自动生成巡检报告) open source
sql·sql优化
Brookty10 小时前
【算法】位运算| & ^ ~ -n n-1
学习·算法·leetcode·位运算
·云扬·10 小时前
MySQL主从数据一致性校验工具:pt-table-checksum 详解
数据库·sql·mysql
剪一朵云爱着10 小时前
力扣2560. 打家劫舍 IV
算法·leetcode
那我掉的头发算什么10 小时前
【数据库】事务
数据库·sql·mysql·github·数据库开发
自由日记10 小时前
MySql修炼2(力扣):收了6只妖
数据库·mysql