Hello,
I'm having this problem query searching for date range
and here is the error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression.
The ONLY way that could get me output is replacing = with LIKE and that is not how I'd like to do since my next search will do BETWEEN the 2 dates.
Thanks
I'm having this problem query searching for date range
Code:
SELECT * FROM myTable WHERE DatePurchased = '8/8/2010' ORDER BY ID Desc
and here is the error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression.
The ONLY way that could get me output is replacing = with LIKE and that is not how I'd like to do since my next search will do BETWEEN the 2 dates.
Thanks