SQL语句 获取每天数据量

2024-11-28 02:44:16
推荐回答(1个)
回答1:

select date, count(id), sum(money)  
from tests  
where date between '8.1' to '8.7'  
group by date