Zend_db 中的完整性约束违规

发布于 2024-07-23 13:04:50 字数 814 浏览 12 评论 0原文

我有以下代码:

$selectColumns= array('user_id.user_email',
                    'user_details.first_name', 
                    'user_details.last_name', 
                    'user_details.zip', 
                    'user_details.store_id');
$result = $handle->select()->from('user_id')
                           ->where('uid=?', $uid)
                           ->columns($selectColumns)
                           ->join('user_details', 'user_id.uid = user_details.uid')
                           ->query(ZEND_DB::FETCH_OBJ);

运行后,出现以下错误:

Uncaught exception 'Zend_Db_Statement_Exception' with message 'SQLSTATE[23000]: '
Integrity constraint violation: 1052 Column 'uid' in where clause is ambiguous

我一直在试图找出我做错了什么。 有什么帮助吗?

I have the following code:

$selectColumns= array('user_id.user_email',
                    'user_details.first_name', 
                    'user_details.last_name', 
                    'user_details.zip', 
                    'user_details.store_id');
$result = $handle->select()->from('user_id')
                           ->where('uid=?', $uid)
                           ->columns($selectColumns)
                           ->join('user_details', 'user_id.uid = user_details.uid')
                           ->query(ZEND_DB::FETCH_OBJ);

After I run, I get the following error:

Uncaught exception 'Zend_Db_Statement_Exception' with message 'SQLSTATE[23000]: '
Integrity constraint violation: 1052 Column 'uid' in where clause is ambiguous

I've been trying to figure out what I'm doing wrong.
Any help?

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

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

发布评论

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

评论(2

街道布景 2024-07-30 13:04:50

问题出在 WHERE 子句中的 uid=? 。 由于 uid 列同时存在于 user_iduser_details 表中,MySQL 无法确定您真正想要使用哪一列。 因此你必须这样做

// [...]
->where('user_id.uid=?', $uid)
// [...]

The problem is the uid=? in your WHERE clause. As a uid column is in both tables user_id and user_details MySQL cannot determine which column you really want to use. You must therefore do

// [...]
->where('user_id.uid=?', $uid)
// [...]
忆梦 2024-07-30 13:04:50

检查日志中生成的sql查询。 也许您必须在连接之后放置 where 子句。

check the generated sql query in the log. Maybe you have to put the where clause after the join.

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