即使MySQL工作台中的错误也继续SQL查询

时间:2011-03-20 02:41:14

标签: mysql halt

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

我可以在SQL前加上一些东西来阻止查询在任何错误时停止吗?

3 个答案:

答案 0 :(得分:80)

mysql --force < sample_data.sql 

Mysql帮助部分说

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

答案 1 :(得分:34)

您也可以使用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

答案 2 :(得分:31)

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

enter image description here

看起来津巴布韦的答案也会起作用。


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

Toggle whether execution of SQL script should continue after failed statements