When running
select processing_date from table;
i got this result "04-30-2020 20.12.49.978711" what i want to change the format of the result to "30-APR-20"
is there a way i can do that ?
i tried select to_date(processing_date,'mm-dd-yyyy') from table; but it gives me errors
any help ?
alter session set NLS_DATE_FORMAT = 'DD-MON-RR'. To select character string useto_char