In ms-access database i have a table named tableA
this table has a column called Call_Date which has 4 types of entries
- dates ( e.g 10/23/2008 )
- -
- NA
- Blanks ( empty cell )
how can i write a query to select all rows of tableA except those where the Call_Date column has - or NA or Blanks
i tried writing
Select * from tableA where Call_Date not in ('-','NA',' ');
but its giving type mismatch error.