我的表格结构如下
id cust_id target month year fiscal_ID
1 234 50 4 2013 1
2 234 50 5 2013 1
3 234 50 6 2013 1
4 234 150 7 2013 1
5 234 150 8 2013 1
6 234 150 9 2013 1
我需要得到如下结果
cust_id target quarter year fiscal_ID
234 150 Q1 2013 1
234 450 Q2 2013 1
第一季度为4,5,6个月,第二季度为7,8,9等
答案 0 :(得分:2)
由于您将month
和year
存储在不同的列中,因此获得结果的一种方法是使用引用月份和季度的派生表并加入该数据:< / p>
select t.cust_id,
sum(target) target,
d.qtr,
t.year,
t.fiscal_id
from yourtable t
inner join
(
select 4 mth, 'Q1' qtr union all
select 5 mth, 'Q1' qtr union all
select 6 mth, 'Q1' qtr union all
select 7 mth, 'Q2' qtr union all
select 8 mth, 'Q2' qtr union all
select 9 mth, 'Q2'
) d
on t.month = d.mth
group by t.cust_id, d.qtr, t.year, t.fiscal_id;