Hi,
I'm trying to "connect" two fields of the diferent types, one of them is STRING, and the other is DATE.
SELECT firstName, lastName
FROM tblPerson, tblPerson1
WHERE tblPerson.Date = tblPerson1.Date
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AND tblPerson.Date LIKE '7.4.2003'
tblPerson.Date is STRING type field
tblPerson1.Date is DATE type field
I've tried using in my ASP code:
WHERE tblPerson.Date = CStr(tblPerson1.Date)
but when I execute the query, the recordset is empty.
The thing is, when I try the same query in MS Access query editor, it works !?!?
Please help, Neven