如何使用"进行SQL查询 - 评论"在代码中?

时间:2017-07-19 10:13:15

标签: sql node.js

当我这样做时

connexion.query(the_sql_file);

我有这个错误

Unhandled rejection SequelizeDatabaseError: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '; -- phpMyAdmin SQL Dump

因为很明显,我有一个非常长的.sql文件,里面有注释。 有很多评论标有" - 评论"

问题:如何使用" - "来查询评论,没有抛出异常?

2 个答案:

答案 0 :(得分:0)

尝试使用此 mysqldump -u root -p databasebame>导出文件; database.sql --compact

在此“ - 评论”部分不包括在内。

您可以参考链接How can I get rid of these comments in a MySQL dump?

答案 1 :(得分:0)

您可以使用pg-minify删除所有注释,同时缩小SQL。