即使 MySQL 工作台中出现错误,也可以继续 SQL 查询

发布于 2024-10-23 12:39:07 字数 135 浏览 1 评论 0原文

我正在使用 MySQL 工作台将 Joomla sample_data.sql 文件导入到我的本地数据库中。我希望它能够通过跳过导致错误的行来继续导入,即使发生错误也是如此。

我可以在 SQL 前面添加一些前缀来防止查询因任何错误而停止吗?

I'm using MySQL workbench to import a Joomla sample_data.sql file into my local database. I want it to continue importing, even if an error occurs, by skipping the line that caused the error.

Is there something I can prefix the SQL with to prevent the query from halting at any errors?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

缱倦旧时光 2024-10-30 12:39:07

尝试

mysql --force < sample_data.sql 

Mysql 帮助部分说

 -f, --force         Continue even if we get an sql error.

try

mysql --force < sample_data.sql 

Mysql help section says

 -f, --force         Continue even if we get an sql error.
装迷糊 2024-10-30 12:39:07

您还可以使用INSERT IGNORE

INSERT IGNORE INTO mytable
 (primaryKey, field1, field2)
VALUES
 ('1', 1, 2),
 ('1', 3, 4), //will not be inserted
 ('2', 5, 6); //will be inserted

You could also use INSERT IGNORE

INSERT IGNORE INTO mytable
 (primaryKey, field1, field2)
VALUES
 ('1', 1, 2),
 ('1', 3, 4), //will not be inserted
 ('2', 5, 6); //will be inserted
弄潮 2024-10-30 12:39:07

在 MySQL Workbench 中,我取消选中“查询时停止脚本执行错误”选项:

在此处输入图像描述

它看起来像Zimbabao 的答案也将有效。


在较新的版本中,使用“切换 SQL 脚本的执行是否应在失败的语句后继续”

In MySQL Workbench, I unticked the option under Query to "Stop Script Execution on Errors":

enter image description here

It looks like Zimbabao's answer will work also.


In newer versions use 'Toggle whether execution of SQL script should continue after failed statements'

Toggle whether execution of SQL script should continue after failed statements

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文