SQL 里面没有季度函数
Select Season = Case when month(日期) in (1,2,3) then '一季度'
when month(日期) in (4,5,6) then '二季度'
when month(日期) in (7,8,9) then '三季度'
when month(日期) in (10,11,12) then '四季度' end
, 汇总 = sum(应收金额)
from 你的表名
group by
Case when month(日期) in (1,2,3) then '一季度'
when month(日期) in (4,5,6) then '二季度'
when month(日期) in (7,8,9) then '三季度'
when month(日期) in (10,11,12) then '四季度' end
[此贴子已经被作者于2007-3-26 15:37:25编辑过]