关系表中的学说顺序与限制

时间:2009-12-16 11:28:39

标签: doctrine limit one-to-many

我有两个表“系列”和“程序”,程序是多对一系列。

系列表

id | name
--------------
1  | lorem
2  | ipsum
3  | foo
4  | bar

节目表

id | name      | series_id
---------------------
1  | program1  | 1
2  | program2  | 2
3  | program3  | 3
4  | program4  | 4
5  | program5  | 1
6  | program6  | 2
7  | program7  | 3
8  | program8  | 4
9  | program9  | 1
10 | program10 | 2
11 | program11 | 1
12 | program12 | 2

我想在Doctrine(1.2)中获得最新程序的两个系列,在本例中为系列2,然后是系列1,请参阅程序中的最后两行。

我的猜测是:

$q = Doctrine_Query::create()->from('Series s')
                             ->leftJoin('s.Programs p')
                             ->orderBy('p.id desc')
                             ->limit(2);

但这会返回系列4和系列3.问题是Doctrine在执行查询之前使用了一个不同的查询获取id,其中包含数据,他们使用该策略,因为我认为MySql不能在子查询中使用限制。

我的问题是,您如何通过DQL获得系列2 系列1

1 个答案:

答案 0 :(得分:1)

试试这个:

$q = Doctrine_Query::create()
    ->select('s.name')
    ->addSelect('(SELECT p.series_id FROM Programs p WHERE p.series_id = s.id) as series_name')
    ->from('Series s');
    ->orderBy('p.id desc')
    ->limit(2);