I try to pull out data from a table(a linked table) .
I want to get all the date from the al1 table where the date is after today.
Table al1 contains a field "datefield" which text format likes "23-May-2005"
If I run this query:
SELECT CDate(al1.datefield) AS Expr1
FROM al1;
,it worked fine
But I run this query:
SELECT CDate(al1.datefield) AS Expr1
FROM al1
WHERE (((CDate(al1.datefield))>D
ate()));
, it did day "Data type mismatch in criterial expression"
How could I fix it?
Thanks!
Start Free Trial