场景:一个明细表,直接在mysql通过view形成《汇总表》,现在想在生成《汇总表》前,插入条件,以便前端用户看到的《汇总表》按条件取所需的汇总数据,如下图:
1、明细表:
2、汇总表:
3、Controller:
sql:select date,city,sum(money) from 明细表 where date between ? and ? group by city;
没弄清,怎么通过ctr把条件加上去,求指教。