```select day(date) as day, count(question_id) as question_cnt
from question_practice_detail
where month(date) = 08 and year(date) = 2021
group by date
本来在day(date) 前面加了distinct,结果错了..是我画蛇添足了

```select day(date) as day, count(question_id) as question_cnt
from question_practice_detail
where month(date) = 08 and year(date) = 2021
group by date
本来在day(date) 前面加了distinct,结果错了..是我画蛇添足了