Qoutes in "Output to" statement -
12-16-2003
, 05:40 AM
If I run the following statement:
---
select time1, time2 from table1 ;Output to c:\test.csv Quote '"' ALL;
---
and time1 is Null
it writes
---
, "12:00"
---
to a .csv file and I want it to be
---
"","12:00"
---
Any ideas how can I do it? |