You can write a query that does the conversion for you and then use that query for the export. This should do the conversion SELECT CAST(MyColumn AS CHAR(10000) CHARACTER SET utf8) AS MyColumn FROM MyTable;
↧