题目:现在运营想要计算出2021年8月每天用户练习题目的数量,请取出相应数据。 select day(date) day ,count(*) question_cntfrom question_practice_detailwhere year(date)="2021" and month(date) ="08"group by date