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.
我正在使用实际的 cygwin 版本并安装了 mysql 包 5.5.21。使用 mysqldump 时,我遇到插入语句在一行中的问题。我已经尝试过以下语句,但似乎它们对输出没有任何影响。
mysqldump --opt --extended-insert --complete-insert .... mysqldump -c ...
有谁知道我如何强制 mysqldump 为每个数据行创建一个插入?
--extended-insert是导致每行多行的原因。它也是--opt.
--extended-insert
--opt
尝试添加--skip-extended-insert.
--skip-extended-insert