I have a command as follows:
SPOOL &&p_CSVfile
SELECT
YEAR || ', ' ||
TO_CHAR(AMOUNT, '$9,999,999,999.99')
FROM TABLE
SPOOL OFF
...and values in the AMOUNT field can contain commas. When this file is opened in Microsoft Excel, the AMOUNT field is treated as two separate fields if it contains a comma. Is there a simple way around this that I am not aware of, or will I have to change my delimiter?