5

Angenommen, ich habe 2 TabellenGROUP_CONCAT mit joinLeft in Zend Db Select

articles 
    id    title 
    1    Article 1 
    2    Article 2 


Images 
    id    article_id  image 
    1    1    a.png 
    2    1    b.png 
    3    2    c.png 
    4    2    d.png 

Alles, was ich will, ist alle Artikel mit ihren Bildern retreive.

Zum Beispiel:

article_id  title   images 
1    Article 1  a.png, b.png 
2    Article 2  c.png, d.png 

Wie kann ich das mit Zend_Db_Select?

Ich habe versucht, so etwas hatte aber kein Glück:

$select = $this->getDbTable()->select()->setIntegrityCheck(false)->distinct(); 
$select->from(array('a'=>'articles')) 
    ->joinLeft(array('i'=>'images'),'i.article_id=a.id',array('images'=> new 
       Zend_Db_Expr('GROUP_CONCAT(i.image)'))); 

Es ist einfach nur 1 Zeile zurückgibt, die ‚Bilder‘ Feldbilder beider Artikel enthält.

article_id  title   images 
1    Article 1  a.png, b.png, c.png, d.png 

Was mache ich hier falsch?

+1

Wo ist group by-Klausel? –

Antwort

7

Sie haben in der Abfrage group by Klausel nicht verwendet.

unten Versuchen:

$select->from(array('a'=>'articles')) 
    ->joinLeft(
     array('i'=>'images'), 
     'i.article_id=a.id', 
     array('images'=> new Zend_Db_Expr('GROUP_CONCAT(i.image)'))) 
    ->group('a.id'); 
+0

Das Hinzufügen von "GROUP BY" löste das Problem. Oder mit diesem löst es auch: $ select-> joinLeft (array ('x' => neue Zend_Db_Expr ('(SELECT i.article_id, GROUP_CONCAT (i.image) als Bilder von Bildern als i GROUP BY i.article_id) ')), ' x.article_id = a.id ', Array (' x.images ')); –

+0

Ihre Antwort hat mir wirklich geholfen – Zygimantas