在Laravel 4.1中使用Eloquent ORM查询同一表中的关系

时间:2014-02-10 16:45:22

标签: php laravel laravel-4 eloquent

我刚刚发现了Laravel,并进入了Eloquent ORM。但是我对以下一个小问题感到磕磕绊。

我有三个包含以下结构和数据的表:

words

id | language_id | parent_id | word
-------------------------------------------
1  | 1           | 0         | Welcome
-------------------------------------------
2  | 2           | 1         | Bienvenue
-------------------------------------------

documents

id | title
---------------------
1  | Hello World
---------------------

documents_words

document_id | word_id
--------------------------
1           | 1
--------------------------

如您所见,我们在单词表中有父/子关系。

文件模型定义如下

class Documents extends Eloquent {

protected $table = 'documents';

public function words()
{
    return $this->belongsToMany('Word', 'documents_words', 'document_id');
}

}

单词模型:

class Word extends Eloquent {

protected $table = 'words';

public function translation()
{
    return $this->hasOne('Word', 'parent_id');
}


}

现在我的问题是我想要检索已翻译单词的文档,所以我认为这样做:

$documents = Documents::whereHas('words', function($q)
{
    $q->has('translation');
})
->get();

但我得到0结果,所以我检查了Eloquent生成并使用的查询:

 select * from `prefix_documents`
 where
 (
select count(*) from 
`prefix_words`

inner join `prefix_documents_words` 

on `prefix_words`.`id` = `prefix_documents_words`.`word_id` 

where `prefix_documents_words`.`document_id` = `prefix_documents`.`id` 

and (select count(*) 
from `prefix_words` 
where `prefix_words`.`parent_id` = `prefix_words`.`id`) >= 1

  ) >= 1

问题是它没有为表使用别名,我的查询应该更像这样工作(并且确实如此):

 select * from `prefix_documents`
 where
 (
select count(*) from 
`prefix_words`

inner join `prefix_documents_words` 

on `prefix_words`.`id` = `prefix_documents_words`.`word_id` 

where `prefix_documents_words`.`document_id` = `prefix_documents`.`id` 

and (select count(*) 
from `prefix_words` as `w`
where `w`.`parent_id` = `prefix_words`.`id`) >= 1

  ) >= 1

但是我怎么能用Eloquent ORM做到这一点?

非常感谢你的帮助,希望我足够清楚。

1 个答案:

答案 0 :(得分:5)

在Word模型中,更改

public function translation()
{
    return $this->hasOne('Word', 'parent_id');
}

public function translation()
{
    return $this->belongsToMany('Word', 'words', 'id', 'parent_id');
}

这样我们就告诉Laravel在使用您的查询时在口才中创建一个别名。我没有测试其他情况,但我认为它会起作用。