Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将数据文件加载到 MySQL 中。这个文件没有分隔符,所以我必须按位置。但问题是某些列数据中有一些反斜杠。因此,这些反斜杠在加载到 MySQL 时会被省略。我事先尝试在文件中将 \ 替换为 \,但在这种情况下,数据的位置会受到影响。
例如,我的数据文件是这样的:
1 34 abc de\f 583
所以,如果我用 \\ 替换 \,下一个数据(在这种情况下为 583)将被错误地读取。
我已经用过FIELDS ESCAPED by '\\'了。
FIELDS ESCAPED by '\\'
请指教。谢谢。