I have oracle (12c) table with column names from_dt, to_dt.
create table param ( name varchar2(10), from_dt date, to_date date);
insert into param values ('Test', '03-FEB-2022', '04-FEB-2022');
I want to append the to_dt value (in format 'YYYYMMDD') from the Oracle table and append to the file name.
i want the file name like ABC_20220204.txt.
Could please let me know how to do this?