发布网友 发布时间:2022-04-22 03:51
共1个回答
热心网友 时间:2022-04-07 18:42
SELECT DATE_FORMAT(time,'%Y-%m-%d') as day, sum(case when amount>0 then amount when amount=0 then 0 end) as amount1
from table where time>='2014-11-01' group by day;
我没有测试。time表示日期,amount表示数量。查询11月后每天成交数量