im creating a csv file from sql and i must have column title name with comma like:
id,name,company
1,ART,Oracle
select ( id || ',' || name || ',' || company ) as **????????** from emplo
is there any way to display a sql column title with commas?