2019-05-13 16:27

@JFinal 波总
insert into chart_count(interface_code,total,success,timeOut,interface_date)
(select interface_code,count(uuid) as total,sum(case when interface_status ='Y' then 1 else 0 end) as success,sum(case when interface_time > 30 then 1 else 0 end) as timeOut,to_char(interface_date,'yyyy-MM-dd') as interface_date from chart where to_char(interface_date,'yyyy-MM-dd') < '2019-05-10' group by to_char(interface_date,'yyyy-MM-dd'),interface_code) 这条sql用Db.update()语句,需要像查询那样group by那样加true吗?第一次项目中用JFinal不是很太会!

2019-05-13 16:18

@JFinal 清空一张表的方法是什么,上面的插入语句直接用Db.update()能行吗

2019-04-30 10:02

@JFinal 但是我这边不仅要用聚合函数,也得查表中的一部分字段,用queryInt合适吗

2019-04-30 09:44

我在数据库中只需要0.171s,但是用dao.find()时,需要2.3s

2019-04-28 11:20

@JFinal 波总,改成put了啊,报the attribute name is not exist,我改了

2019-04-28 11:06

@JFinal 就是用的这种方法,但是数据库没有这个字段,然后汇报 the attribute name is not exist