欢迎访问程序交流网
爱好·追求
SQL把日期转换为季度来作查询
发布时间:2009-06-03
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 ,
    count(*)
    from tablename
    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

查询结果为 按季度分组后的各季度记录数量

这个网站不错
上好网站,看蚌埠人www.BBR.cn提供技术支持! 皖ICP备05020152号