SQL 查询虽然构造正确,但返回 1064 错误

发布于 2024-11-19 23:20:27 字数 600 浏览 0 评论 0原文

有人可以指出为什么以下查询失败吗?

SELECT 
references_translations.language_id, 
references_translations.active, 
references_translations.title, 
references_translations.slug, 
references_translations.body, 
references_translations.seo_title, 
references_translations.seo_description, 
references.* 

FROM (references) 

INNER JOIN references_translations ON references_translations.reference_id = references.id AND references_translations.language_id = 'nl' 

WHERE `references_translations`.`active` = 1;

我不明白为什么这个查询总是失败。无法找到我的表名或列名是否被 MySQL 保留。

任何正确方向的指示将不胜感激。提前致谢。

Can somebody point out why the following query fails?

SELECT 
references_translations.language_id, 
references_translations.active, 
references_translations.title, 
references_translations.slug, 
references_translations.body, 
references_translations.seo_title, 
references_translations.seo_description, 
references.* 

FROM (references) 

INNER JOIN references_translations ON references_translations.reference_id = references.id AND references_translations.language_id = 'nl' 

WHERE `references_translations`.`active` = 1;

I cant see why this query keeps failing. Couldn't find if any of my table or column names are reserved by MySQL.

Any pointers in the right direction would be greatly appreciated. Thanks in advance.

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

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

发布评论

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

评论(2

红衣飘飘貌似仙 2024-11-26 23:20:27

references 是一个保留关键字,请尝试将其括在反引号 ` 中。

references is a reserved keyword, try to enclose it in backticks `.

梦里梦着梦中梦 2024-11-26 23:20:27

参考文献是一个保留字。

从下面的链接检查:

MySQL 5.5 保留字

References is a Reserve word.

Checked from link below:

MySQL 5.5 Reserved-words

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