Hello, I have a table which contains multiple columns, one of the columns is call Date_Of and it contains dates in the following format. ddMONyyy:hh:mm:ss Ex. 26MAY2015:00:00:00. I'm trying to use a query in which I try to extract only records of today. SELECT t12.DATE_OF, FROM QUERYt12 WHERE t1.DATE_OF<=today(); QUIT; Unfortunately the query doesn't extract any records, on the other hand if I switch the < operator to > it extracts all the data. I think it's related to the format of the date, I could't find a solution to this problem, hope someone will be able to help me out here. Appreciate your help. Thank you
... View more