Obtain Nearest prior to Returndate
Hi Guys,
How do i obtain the nearest shipdate prior to Returndate.
here is my sample script. thanks. kindly check my script.
the result should be 2011-02-23
Table1
ESN--DateReturn
123--2011-03-08
TABLE2
ESN---ShipDate
123---2010-09-28
123---2011-02-23
Select
a.DateReturn
max(b.shipdate)
from Table1 as a
left outer join table2 as b
on a.esn=b.esn
and b.shipdate <= returndate
Thank you.
JOV
jovillanuev
Junior Poster in Training
76 posts since Jun 2011
Reputation Points: 10
Solved Threads: 0
I got it. here is my script..any comments. or other option. thanks.
Select
a.DateReturn
max(b.shipdate)
from Table1 as a
left outer join table2 as b
on a.esn=b.esn
and b.shipdate <= returndate
Result:
123---2011-02-23
jovillanuev
Junior Poster in Training
76 posts since Jun 2011
Reputation Points: 10
Solved Threads: 0