我想取平均每月 number_of_listings
对于每个 merchant_id
.
下表显示了每个 merchant_id
每日 number_of_listings
主表
date merchant_id number_of_listings
2019-02-01 12 325
2019-02-02 12 332
2019-02-03 12 235
2019-02-04 12 393
2019-02-05 12 484
2019-02-06 12 383
2019-02-07 12 434
输出表
month merchant_id average_number_of_listings
2019-02 12 400
1条答案
按热度按时间643ylb081#
这是一个简单的聚合查询。你可以使用日期函数
date_trunc()
,返回每月的第一天: