有关统计图的问题(60分)

  • 主题发起人 主题发起人 income
  • 开始时间 开始时间
I

income

Unregistered / Unconfirmed
GUEST, unregistred user!
我要按年度(year)来统计种树面积和,使用的控件是DBchart
因为年度的存储格式为 xxxx/xx/xx,所以DBchart将1999/03/01 和
1999/03/02 视为两个不同的时间段分别显示,应该将1999年的植树面积
求和后显示,请问各位大侠我该如何做?(年度格式因其他原因无法更改)
我用Decision cube 也碰到类似问题。
 
建一个临时表,
用Select sum(area) from yourdb
where extract(Year from Yourdate)=:VYear
用VYear边历数据库。
期望更好的办法
 
能不能只用Chart,好像速度会快很多了.
 
select datepart(year,thedate) as theyear, sum(area) as sum_area
from yourdb
group by datepart(year, thedate)
order by theyear
 
这种方法在paradox下是不行的。大型数据库maybe
 
多人接受答案了。
 
后退
顶部