I have a DB that lists a date in each column, so that when I run a simple query I can pull up only the dates that I need. I have tried (filtering by exculding dates not needed) but now my DB is too big to spend the time going through each date, to only get current dates needed. I need to know a way to run a simple query to pull up curtain dates in one query. Not sure hot to do it, I am new to access and have learning as I go, so any help will do. Thank you.
Software/Hardware used:
ASKED:
April 6, 2009 2:27 PM
UPDATED:
April 13, 2009 4:16 PM
hi…
select * from table_nm where date_col in (<give the list of dates you need to filter>)