我有一个带字符串的CSV" Writing Concepts&技能"但是,当我运行下面的代码"&符号"转换为"和"串。为什么会发生这种情况,我该如何避免呢?
load data local infile '~/Grade\ Levels.csv'
into table test_codes
fields terminated by ',' enclosed by '"'
lines terminated by '\r\n';
答案 0 :(得分:1)
在这个没有进一步信息的阶段,这似乎很奇怪。
但大多数情况下,当xml等其他内容出现问题或者你是通过php等进行此操作时
如果您将&
替换为可能有效的&
。