Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know how to export multiple columns to a csv file. using:

SELECT `col1`, `col2`
FROM table
INTO OUTFILE 'C:/filename.csv'
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n';

When I open the file using excel, everything is fine, each record is in a line. But, when I open it using notepad, I find all records are printed next to each other without line separator. How can I make the output of the query to be printed as one record per line and each column separated by comma ??

share|improve this question
1  
Please improve your accept-rate – alfasin Sep 21 '12 at 21:22

2 Answers

up vote 2 down vote accepted

\n is a line break under linux, but windows uses \r\n

Accordingly, this code does what you want

SELECT `col1`, `col2`
FROM table
INTO OUTFILE 'C:/filename.csv'
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\r\n';

Many other tools like Excel, Notepad++ or WordPad can read file both with \n and \r\n, so they are not affected by this change and display the file correctly both with your original code and this modification.

share|improve this answer

'\n' is used as Line separator in Unix/Linux, Line separator for Windows should be '\r\n'.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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