我用query 定义的数据源,格式应该是这样的:
select tjdate,sum(costtime) from clrtj where ny>='2011-11-01' and ny<='2011-11-31' group by tjdae,
这样是可以实现的。
如果下面的语句:
select substr(tjdate,1,7),sum(costtime) from clrtj where ny>='2011-11-01' and ny<='2011-11-31' group by substr(tjdae,1,7)
用query 可以实现吗?
也就是说按月分组。
第一个语句是按日分组。
在线等。
------解决方案--------------------
有个sql的图标 ,点击它,然后 design ->convert to syntax .....