我在新建数据库查询时,写sql 语句
SELECT sZone,SUM ( Shijian) AS zonghe FROM 表名
where DDTime between'${starttime}' and '${endtime}'//这里我是做了一个时间范围限制
AND sZone in('${zone}' )//有一个zone复选框。
AND workstation in('${workstation}')//有个workstation复选框
AND inputtype in ('${inputtype}')//同样有个复选框
group by sZone order by zonghe desc;
表格里有 sZone 、DDTime, Shijian,sZone ,workstation,inputtype
要的就是SZone以及zonghe两项
柱形图的分类是sZone,系列名sZone,值:zonghe
这样并没有效果,问题出在复选框那,应该怎么写,因为我删除掉复选框语句就有图了