2013-04-24 16 views
10

Ok ich habe diesen Code:Symfony2 Lehre wählen IFNULL

SELECT 
IFNULL(s2.id,s1.id) AS effectiveID, 
IFNULL(s2.status, s1.status) AS effectiveStatus, 
IFNULL(s2.user_id, s1.user_id) as effectiveUser, 
IFNULL(s2.likes_count, s1.likes_count) as effectiveLikesCount 

FROM statuses AS s1 
LEFT JOIN statuses AS s2 ON s2.id = s1.shared_from_id 
WHERE s1.user_id = 4310 
ORDER BY effectiveID DESC 
LIMIT 15 

und ich brauche es neu zu schreiben, um Querybuilder. So ähnlich?

 $fields = array('IFNULL(s2.id,s1.id) AS effectiveID','IFNULL(s2.status, s1.status) AS effectiveStatus', 'IFNULL(s2.user_id, s1.user_id) as effectiveUser','IFNULL(s2.likes_count, s1.likes_count) as effectiveLikesCount'); 

    $qb=$this->_em->createQueryBuilder() 
      ->select($fields) 
      ->from('WallBundle:Status','s1') 
      ->addSelect('u') 
      ->where('s1.user = :user') 
      ->andWhere('s1.admin_status = false') 
      ->andWhere('s1.typ_statusu != :group') 
      ->setParameter('user', $user) 
      ->setParameter('group', 'group') 
      ->leftJoin('WallBundle:Status','s2', 'WITH', 's2.id=s1.shared_from_id') 
      ->innerJoin('s1.user', 'u')    
      ->orderBy('s1.time', 'DESC') 
      ->setMaxResults(15); 

    var_dump($query=$qb->getQuery()->getResult());die(); 

Dieser Fehler ist

[Syntax Error] line 0, col 7: Error: Expected known function, got 'IFNULL' 
+0

Ja, genau wie Fehlermeldung sagt - Doctrine Abfragesprache kennt keine solche Funktion. Gefunden Antwort auf eine ähnliche Frage http://StackOverflow.com/A/9110213/1727046 – gatisl

+0

@Gastill ja Sir, ich sah es, aber ich weiß nicht ... Wie kann ich es "installieren"? – EnchanterIO

Antwort

24

Verwenden COALESCE statt IFNULL wie diese

$fields = array('COALESCE(s2.id,s1.id) AS effectiveID','COALESCE(s2.status, s1.status) AS effectiveStatus', 'COALESCE(s2.user_id, s1.user_id) as effectiveUser','COALESCE(s2.likes_count, s1.likes_count) as effectiveLikesCount'); 

COALESCE geben den ersten Wert in der Liste nicht null, so dass, wenn A null ist und B nicht null, dann wird COALESCE(A,B) zurückgeben.

Verwandte Themen