我正在尝试使用2个表(从PEOPLE到INJURIES)加入最近的日期,但前提是在过去一个月内有记录。
样本表/输出:
PEOPLE
Name Date
John Smith 01/01/2016
Jerry Doe 01/14/2016
Jane Ellis 02/21/2016
Adam Patel 03/21/2016
INJURIES
Injury Date
Broken Hand 12/30/2015
Broken Wrist 12/31/2015
Head Pain 01/13/2016
Broken Hand 02/02/2016
OUTPUT1 (Able to achieve, but not desired)
Name Injury
John Smith Broken Hand
John Smith Broken Wrist
Jerry Doe Broken Hand
Jerry Doe Broken Wrist
Jerry Doe Head Pain
Jane Ellis Broken Hand
Adam Patel {null}
OUTPUT2 (Desired Output)
Name Injury
John Smith Broken Wrist
Jerry Doe Head Pain
Jane Ellis Broken Hand
Adam Patel {null}
有没有办法在流程的任何步骤中都可以进行连接而不获取output1?我正在处理大量的记录,并希望以尽可能小的计算能力进行连接。
答案 0 :(得分:0)
即使这是一个糟糕的设计,此查询也会返回您想要的结果:
select
p.name,
(select injury
from injuries x
where x.date between p.date - 1 month and p.date
order by x.date desc
fetch first 1 row only)
from
people p;
出于性能原因,您需要提供一些其他详细信息,但您可能希望在INJURIES.DATE
上设置索引(最好按降序排列)。
我建议您寻找合适的密钥来加入表格,因为单独使用日期似乎是获取错误数据的好方法。