I have an .sql file which contains some data like "first_name", "last_name", "email" etc.

What I want to achieve is extraction of some of the fields (let's say "first_name" and "last_name" only) and save them into .csv file.

link|improve this question

and the problem is? – Breezer Dec 12 '10 at 11:27
.sql is generated by mysqldump ? – ajreal Dec 12 '10 at 17:16
feedback

1 Answer

up vote 1 down vote accepted

If you can access the database, then you can use SELECT ... INTO OUTFILE:

SELECT first_name, last_name 
    INTO OUTFILE "/path/to/file.csv" 
    FIELDS TERMINATED BY '\t' 
    LINES TERMINATED BY '\n' 
    FROM mytable;
link|improve this answer
1  
It'll be a bit difficult to run this on plain sql file. – Mchl Dec 12 '10 at 11:30
Not exactly what I needed, however it worked as part of workaround. – Paul Dec 16 '10 at 12:08
feedback

Your Answer

 
or
required, but never shown

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