我有已售商品表,其中有以下几列

SoldItemID
SoldID
SoldAmount
DateOfPurchase
DateOfActivation
CreatedDate


如何获取SQL每周平均售出的商品数量?

任何帮助将不胜感激!

最佳答案

我知道我参加晚会很晚,但是以防万一其他人正在寻找,这可能会起作用:

    select date_part('week', transaction_date) week_of_the_year, item_id,
    avg(sold_qty) from your_table group by 1, 2 order by 1

关于mysql - 如何获取SQL中每周平均售出商品的数量?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52094474/

10-11 02:38