列“idproduct” in from 子句不明确

发布于 2024-12-09 00:51:55 字数 431 浏览 1 评论 0原文

我有一个使用 3 个表的混乱连接查询:

SELECT p.idproduct, p.name, m.sust, p.desc, pp.p_v
FROM products As p
LEFT JOIN meds As m ON m.idproduct = p.idproduct
NATURAL JOIN products_prices As pp
INNER JOIN suc_products As sp ON sp.idsuc = 'SUC1' AND sp.idproduct = p.idproduct
WHERE p.bars = '1';

我收到此错误:

Error Code: 1052. Column 'idproduct' in from clause is ambiguous

需要帮助,请。

I have this messy join query using 3 tables:

SELECT p.idproduct, p.name, m.sust, p.desc, pp.p_v
FROM products As p
LEFT JOIN meds As m ON m.idproduct = p.idproduct
NATURAL JOIN products_prices As pp
INNER JOIN suc_products As sp ON sp.idsuc = 'SUC1' AND sp.idproduct = p.idproduct
WHERE p.bars = '1';

I get this error:

Error Code: 1052. Column 'idproduct' in from clause is ambiguous

Need help, please.

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

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

发布评论

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

评论(1

别闹i 2024-12-16 00:51:55

这是一个疯狂的猜测:您的 product_prices 表有一个 idproduct 列,并且 MySQL 抱怨它不知道是否应该使用 m.idproduct或用于连接的p.idproduct

尝试将 NATURAL JOIN 更改为具有显式 ON 条件的 INNER JOIN。

Here's a wild guess: your product_prices table has an idproduct column and MySQL is complaining that it doesn't know if it should use m.idproduct or p.idproduct for the join.

Try changing the NATURAL JOIN to an INNER JOIN with an explicit ON condition.

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