标签: sql
我需要帮助每月选择一些数据,有4个零售商,我需要在sql中分别选择每个月的交易总额和每个月的总金额。
答案 0 :(得分:2)
从日期中提取月份并按日期分组。然后,您可以使用聚合函数进行求和和计算
select month(date_column), sum(amount) as total_amount, count(*) as transaction_count from your_table group by month(date_column)