User269602965 posted
You would like to get (FILTER) the last 10 days of records from a column that has a datatype of VARCHAR2, but contains a string representing a date in the format of DDMONYYYY without separators between days, months, and year.
Your FILTER records by a WHERE CLAUSE
I do not know the name of the VARCHAR2 column, so let's call it DATE_STRING_COLUMN
SELECT * FROM {YourTableName} WHERE SYSDATE - TO_DATE(DATE_STRING_COLUMN,'DDMONYYYY') < 11;
Will return the last 10 days of records based on the string date in the DATE_STRING_COLUMN