my table has a date column. its data type is date. I confirmed it by going to table name>>columns
and it says MTH_END_DT [DATE, Not NULL]
I want to filter my data for a particular date. If I put a condition where MTH_END_DT = '6/1/2018'
I get an error select failed [3535] A character string failed conversion to a numeric value.
I followed this page. I used where MTH_END_DT = date '6/1/2018'
and i get an error syntax error invalid date literal
I tried where cast(timestamp_column as date) = date '2013-10-22';
something like this and it throws error too
How should i filter my data?