vote up 1 vote down star

How can i put the result of a sql server query into a "comma delimited" format?

flag

75% accept rate
What database type? Client language? How will it be consumed? – Joel Coehoorn Apr 23 at 16:42

4 Answers

vote up 3 vote down check

You should be able to go to Tools->Options->Query Results in SQL Server Management Studio and set the preferences there to output to a text file.

Then expand that and in "Result to Text" you can set the output format there.

link|flag
vote up 1 vote down

If you are using sql server managment studio right click on the output and you can "Save Result as" CSV

link|flag
vote up 0 vote down

Check out this answer on the MySQL forums.

Here's the snippet.

SELECT a,b INTO OUTFILE '/tmp/result.text'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM test_table;
link|flag
vote up -2 vote down

DECLARE @str VARCHAR(8000) SET @str = ''

SELECT @str = @str + column + ',' FROM table SELECT @str

link|flag
Really useful if the data itself contains commas. – John Machin Jul 10 at 3:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.