Viewing 2 posts - 1 through 3 (of 3 total)
The record from table2 should always link to the record in table1 that has the same ID and table1.date1 is less then table2.date2. So to answer your question, Yes,...
April 25, 2008 at 7:47 am
#807179
Thanks for replying, but the following query will do the trick
SELECT t2.ID
, t2.Date2
, t1.Date1
FROM Table2 AS t2
INNER
...
April 24, 2008 at 2:53 pm
#806907