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

  • N.A.
  • There are 4 types of entries

    1. Dates (like 10/23 /
    2. 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

    Popular posts from this blog

    c# - How to capture HTTP packet with SharpPcap -

    php - Multiple Select with Explode: only returns the word "Array" -

    php - jQuery AJAX Post not working -