exporting data from table to .csv file

61 Views Asked by At

I'm trying to load data of a table into a csv file. However rows in file are broken in between. The data of table seems fine and there is no \n anywhere. Then why am I getting breaks in rows? Query I'm executing is

select * from `abc_csv` into outfile '/home/abc.csv'  
 fields terminated by ',' lines terminated by '\n';  

And the result I'm getting is:

A,B,C,D,  
,E,F  

While all these entries belong to the same record

0

There are 0 best solutions below