Hello,
I’m trying the following command in MariaDB to export a table in CSV before reading it in Calc.
SELECT * from mytable INTO OUTFILE '/tmp/test.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n';
Problem is, although double quoted, some columns contain carriage returns –— \0A, like the final CR between each row —, and Calc gets confused for some reason.
Am I doing it wrong?
Thank you.