Zend_Db_Select:在子选择上LEFT JOIN

时间:2011-07-12 11:26:32

标签: left-join zend-db subquery zend-db-select

我有一个查询,在子选择上执行LEFT JOIN。此查询在高负载环境中运行,并在设置要求内执行。查询(高度简化)看起来像:

SELECT
  table_A.pKey
, table_A.uKey
, table_A.aaa
, table_B.bbb
, alias_C.ccc
, alias_C.ddd
FROM table_A
INNER JOIN table_B ON table_A.pKey = table_B.pKey
LEFT JOIN (

    SELECT
      table_X.pKey
    , table_X.ccc
    , table_Y.ddd
    FROM table_X
    INNER JOIN table_Y ON table_X.pKey = table_Y.pKey

  ) AS alias_C ON table_A.uKey = alias_C.pKey;

(由于各种原因,无法将子选择重写为(直接)LEFT JOIN)。

现在,我无法让LEFT JOIN on subselectZend_Db_Select合作。我已经尝试了我能想到的一切,但它不起作用。


所以我的问题是:

  • 如上所述,Zend_Db_Select是否无法进行查询?
  • 我需要什么语法才能在Zend Framework中使用它?

2 个答案:

答案 0 :(得分:8)

我认为它应该像这样工作:

$subselect = $db->select->from(array('x' => 'table_X'), array('x.pKey', 'x.ccc', 'y.ddd'), 'dbname')
                        ->join(array('Y' => 'table_Y'), 'x.pkey = y.pkey', array(), 'dbname');

$select = $db->select->from(array('a' => 'table_A'), array(/*needed columns*/), 'dbname')
                     ->join(array('b' => 'table_B'), 'a.pkey = b.pkey', array(), 'dbname')
                     ->joinLeft(array('c' => new Zend_Db_Expr('('.$subselect.')'), 'c.pkey = a.ukey', array())

我没试过,但我相信它会奏效。

答案 1 :(得分:1)

... - > joinLeft(array('c'=> new Zend_Db_Expr('('。$ subselect-> assemble()。')'),'c.pkey = a.ukey',array())