您要查找的查询应如下所示:
with data as (
select 'John' as name, 1000 as "money", cast('1-15-20' as date) as "date" union all
select 'John', 200, cast('5-30-20' as date) union all
select 'John', 2000, cast('8-30-20' as date) union all
select 'John', 800, cast('11-19-20' as date)
)
select
name,
max(case when month("date") in (1,2,3) then money else null end) as Q1Max,
max(case when month("date") in (1,2,3) then date else null end) as "DateQ1",
max(case when month("date") in (4,5,6) then money else null end) as Q2Max,
max(case when month("date") in (4,5,6) then date else null end) as "DateQ2",
max(case when month("date") in (7,8,9) then money else null end) as Q3Max,
max(case when month("date") in (7,8,9) then date else null end) as "DateQ3",
max(case when month("date") in (10,11,12) then money else null end) as Q4Max,
max(case when month("date") in (10,11,12) then date else null end) as "DateQ4"
from data
group by name
当月份在case when中的条件组中时,您只需要获取最大值
输出
| name |
Q1Max |
DateQ1 |
Q2Max |
DateQ2 |
Q3Max |
DateQ3 |
Q4Max |
DateQ4 |
| John |
1000 |
2020-01-15 |
200 |
2020-05-30 |
2000 |
2020-08-30 |
800 |
2020-11-19 |