我有一個支付表按天分組MySQL的選擇默認值,如果沒有結果
select
day(created),
sum(payments.amount)
from payments
group by day(created)
輸出
day | amount
1 | 432
2 | 4567
5 | 345
6 | 2345
7 | 97
這是很好的,但我想,以放入一些0
沒有付款的日子。
預期輸出:
day | amount
1 | 432
2 | 4567
3 | 0
4 | 0
5 | 345
6 | 2345
7 | 97
可能重複[Mysql group by weekday,填寫缺少的工作日](http://stackoverflow.com/questions/40403859/mysql-group-by-weekday-fill-在失蹤的工作日) –
檢查這個答案:http://stackoverflow.com/a/8888404/1040225 –