I have a MySQL database containing a single table which is used as a temporary storage point for manipulating and querying data sets and is periodically deleted and replaced with new data. What I would like to be able to do is export the data from the MySQL command line to use for other purposes. I am using the XAMPP Apache server package with phpMyAdmin on Windows 10.
The issue I am having is the INTO OUTFILE syntax I am using returns an error relating to ‘n’. Below is an example of the syntax:
SELECT *
FROM tablename
WHERE work_complete = 'Yes'
INTO OUTFILE 'C:file path for the file to be exported tofile_name.csv'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY "''"
ESCAPED BY ''
LINES TERMINATED BY 'n';
I have spent some time researching this without any luck, I have even tried using
LINES TERMINATED BY 'rn'
but the error remained the same
ERROR: Unknown command '''.
-> LINES TERMINATED BY 'rn';
If anyone could provide any tips that would be greatly appreciated.
2
Answers
The problem is not in
LINES TERMINATED BY
but inESCAPED BY
.This:
Is invalid syntax, because the backslash is interpreted as an escape character for the following quote. A decent text editor should let you see that.
You need to escape the backslash, like so:
Alternatively, you can also use
'b'
:Another probem is that
OPTIONALLY ENCLOSED
accepts only a single character, while you are giving it two single quotes.In your query:
Use this
I used some other syntax as you and deleted the OPTIONALLY which mysql doesn’t like at that place