题目:现在运营想要计算出2021年8月每天用户练习题目的数量,请取出相应数据。

    1. select day(date) day ,
    2. count(*) question_cnt
    3. from question_practice_detail
    4. where year(date)="2021" and month(date) ="08"
    5. group by date