how to apply where condition on date field in msaccess
Database
3
Posts
2
Posters
0
Views
1
Watching
-
im using ado in vc++ for access db i have used this query but it shows "data type mismatch in critria expressing" SELECT * from FDetails where ddate = '05/29/2006' ddate is datetime field any one has solution for this problem regards Gan
I believe MSAccess uses pound signs to deliniate dates.
SELECT * from FDetails where ddate = #05/29/2006#
-
I believe MSAccess uses pound signs to deliniate dates.
SELECT * from FDetails where ddate = #05/29/2006#