导出到csv时,MySql在字符串中转义双引号

时间:2017-12-22 21:04:07

标签: mysql csv export mysql-workbench

在将结果集从MySql导出到csv时,我遇到了一个记录问题,该记录在字符串中包含一组转义双引号。

记录在db中正确显示:

db

但是,当我将它导出到csv时,结果会有结束引号应该是的开头引号,以及字符串末尾的结束引号:

the result has the opening quote where the closing quote is supposed to be, and the closing quote at the end of the string

这是插入语句:

INSERT INTO table_name (hh_name) VALUES ("Sam \"FakeName\" & Lisa Smith");

有没有办法输入数据,以便csv导出显示与数据库中显示的相同?

0 个答案:

没有答案