How to use date as a condition in where clause of access Sql

Go4Expert Member
17Apr2007,11:35   #1
nadunalexander's Avatar
sqlStr1 = "SELECT * FROM sold WHERE dateOfSold=" & "3/29/2007"

I used this statement to retrive all the data they have value 3/29/2007 in the field of dateOfSold. When i try this statement this return empty record set. dateOfSold field is in access table sales. fieldtype is date/time. plese help me
Team Leader
17Apr2007,17:32   #2
pradeep's Avatar
Code: SQL
SELECT * FROM sold WHERE dateOfSold=#1/1/2006#
mohan157 likes this
Go4Expert Member
18Apr2007,09:17   #3
nadunalexander's Avatar
Thank you, for ur reply. I it is very usiful to me.
Newbie Member
29Jun2011,11:22   #4
abstrused00388's Avatar
This code was very much helpful i just modified it as :

Adodc1.RecordSource = "SELECT * FROM cm1 WHERE dt>=#1/1/2011 02:00:00 AM# AND dt<=#4/1/2011 02:00:00 PM#"

for searching a database using VB !

please let me know if there is a way to accept input from the user in a text box and use thm instead of the constant values that i have used