Hi All,
I have a column data in the table.
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
WITH table_x
AS (SELECT 'Hot "N" Fresh, Inc.' party\_name,
'Hot "N" Fresh-C/C-PO Box 7437' party\_desc
FROM dual)
SELECT '"'||party_name ||'"'||','
||'"'||party\_desc ||'"'
FROM table_x
Developed SQL PLSQL package to get txt output and i will chnage this to .csv file.
dbms_output.put.line('Party Name',' Party Description' )
dbms_output.put.line('"'||party_name ||'"'||','||'"'||party_desc ||'"' );
I am getting output like below.

Expected output:

Could you please help me?