Oracle 11g
Could you let me know on below.
create table xxibm_notes_tbl(name varchar2(50));
insert into xxibm_notes_tbl values('"CSC"');
insert into xxibm_notes_tbl values('"IBMNOTE"');
insert into xxibm_notes_tbl values('IBMROUTE');
select * from xxibm_notes_tbl;
the above column is having double quotes, which is invisible if we look into the sql developer output, but if we copy the output to notepad then we can see double quotes.
Could you let me know how to remove the double quotes.
Thanks