Click here to Skip to main content
15,916,188 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to access data from database like ms access depending on dates
Posted

write a query something like.. yourdate is the input value.
select * from tablename where datecolumn = yourdate


msdn:SELECT Statement (Microsoft Access) [^]
 
Share this answer
 
If its between dates, use something like this,
SELECT * FROM tablename WHERE DateColumn BETWEEN '01.01.1990' AND '01.01.2011'
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900