How can i put the result of a sql server query into a "comma delimited" format?
|
|
|||
|
|
|
You should be able to go to Then expand that and in "Result to Text" you can set the output format there. |
||
|
|
|
|
If you are using sql server managment studio right click on the output and you can "Save Result as" CSV |
|||
|
|
|
|
Check out this answer on the MySQL forums. Here's the snippet.
|
||
|
|
|
|
DECLARE @str VARCHAR(8000) SET @str = '' SELECT @str = @str + column + ',' FROM table SELECT @str |
|||
|
