In your 'select' statement make every other column either a comma or a space:-
Select col1
,','
,col2
,','
,col3
From Table
;
If you need a delimited file with alined columns then cast each column as a character field. This will ensure that the column is always 'n' characters wide regardless of the value held.