Hi !
This should work:
select add_months(to_date(max(YourDate)), -6) from <table_name>;
The other previous will give u error : invalid character.
To avoid this error, convert the max(yourdate) into date first and then use the add_months function.
thx,
Kavy