ms access - MSAccess: type mismatch in date column for sql query -
I have a table A table in MS-Access database
This table contains a column called callmat
- Dates (like 10/23 /
- Cell)
How do I write a query to select all the rows of tables where the call data column - or NA or empty space
I tried to write
Select * From the table where Call_Date is not ('-', 'NA', '');
But its type of mismatch error
I'm assuming that the Call_Date
should be the string type in the table.
Select from table * where IsDate (Call_Date) = true
Comments
Post a Comment