CakePHP:如何使用内部联接从两个表中检索数据?
Posted
技术标签:
【中文标题】CakePHP:如何使用内部联接从两个表中检索数据?【英文标题】:CakePHP: How to retrieve data from two tables using an inner join? 【发布时间】:2014-06-01 15:22:43 【问题描述】:我在数据库中有两张表,一张为user(id,first_name,last_name)
,另一张为location(id,country)
。
我需要根据条件user.id = location.id
对这两个表进行内连接,查询结果应该包含first_name
、last_name
和country
列。
我在 Cakephp 中尝试过以下查询:
$this->set('users', $this->User->find('list', array(
'fields' => array(
'User.id',
'User.first_name',
'location.country'
),
array(
'joins' => array(
array(
'table' => 'location',
'alias' => 'location',
'type' => 'INNER',
'conditions' => array('User.id = location.id')
)
)
)
)));
然而会产生这个错误:
“字段列表”中的未知列“location.country”
可能是什么问题?
【问题讨论】:
在检索字段时请更改为'location'.'country'
而不是'location.country'
表格是位置还是位置?
【参考方案1】:
我认为你的语法是错误的,因为选项数组应该有一个连接键。您似乎有一个额外的array
。试试:
$this->set('users',$this->User->find('list',
array(
'fields' => array('User.id', 'User.first_name','location.country'),
'joins' => array(array('table' => 'location',
'alias' => 'location',
'type' => 'INNER',
'conditions' => array('User.id = location.id')
))
)
));
【讨论】:
以上是关于CakePHP:如何使用内部联接从两个表中检索数据?的主要内容,如果未能解决你的问题,请参考以下文章