我希望Pdate列作为输出。我有这三个属性:id,Bonus和Date。我必须获得日期列的输出,以便该列显示员工收到20或超过20欧元的先前日期,对应于员工获得奖金的正常日期。请查看下表以更深入地了解该问题:
id Bonus Date my_output Pdate(Required Output)
1 15 "2017-06-20" "2017-04-17"
1 10 "2017-05-22" "2017-04-17"
1 20 "2017-04-17" "2017-04-17" "2017-03-20"
1 20 "2017-03-20" "2017-03-20" NULL
2 15 "2017-02-20" "2017-01-28"
2 25 "2017-01-28" "2017-01-28" NULL
因此,正如你可以看到的第一行,奖金是15,因为我们想要奖励大于或等于20,所以在“2017-04-17”,对于id 1,奖金是20.因此,Pdate有那个日期。并且在第四行中,由于根据用户1的条件没有先前的奖励日期,因此pdate为空。
select id,Bonus_value as Bonus,
(case when Bonus_value>=0 then Bonus_date end) as date,
(case when Bonus_value>=20 then Bonus_date end) as my_output
from Bonus
group by id,Bonus_value,Bonus_date
order by id,Bonus_date desc
在这段代码中,没有更新,因为我不知道如何获得该列。这就是我想要的。我想过使用lead()窗口函数,我仍然不知道如何得到它对应于日期列。
在标准SQL中,您可以使用ignore null
s选项:
select t.*,
lag(case when bonus >= 20 then date end ignore nulls) over (partition by id order by date) as pdate
from t;
并非所有数据库都支持此选项,因此您还可以将max()
与window子句一起使用:
max(case when bonus >= 20 then date end ignore nulls) over (partition by id order by date rows between unbounded preceding and 1 preceding) as pdate
from t;