任何人都可以告诉我从去年1月开始获得去年最近2个月的记录的逻辑吗?例如:我想将2016年1月的销售额作为当月和2015年12月的销售额与上个月和2015年11月的两个月前进行比较。我试过这样,但如果是Jan或feb那就不行了
(case when extract(month from m.validfrom) = extract(month from current_date)-1 then 'Previous Month'
when extract(month from m.validfrom) = extract(month from current_date)-2 then 'Two Months Before'
when extract(month from m.validfrom) = extract(month from current_date) then 'Current Month' end ) as month,
答案 0 :(得分:0)
case date_trunc('month', m.validfrom)
when date_trunc('month', current_date - interval '1 month') then 'Previous Month'
when date_trunc('month', current_date - interval '2 month') then 'Two Months Before'
when date_trunc('month', current_date) then 'Current Month'
end as month