A2003 - Getting records between two dates

  • Thread starter drunkjunkie via AccessMonster.com
  • Start date
D

drunkjunkie via AccessMonster.com

Hi,

I have a table with two columns each containg a start date and an end date
(tblHHExport). I also have a second table with a list of dates in (tblDates).

What I need to do is for each record in tblHHExport extract all records from
tblDates where the date is between the start and end date in tblHHExport.

Any help would be appreciated.

Jon
 
K

KARL DEWEY

SELECT tblDates.ListDate
FROM tblDates, tblHHExport
WHERE (((tblDates.ListDate) Between [StartDate] And [EndDate]));
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top