I want export csv directly from mysql with command
SELECT .... 
FROM ...
INTO OUTFILE '/tmp/export.csv' 
FIELDS TERMINATED BY ',' 
ESCAPED BY '\\'
LINES TERMINATED BY '\n' ;
This work perfectly, but encode not is utf8.How make the content exported utf8 encoding?