DQL Concat很多字符串

问题描述 投票:1回答:1

我想用DQL连接许多字符串,但是当我尝试时我有一条错误消息。

我的代码:

$qb = $this->_em->createQueryBuilder();
$qb->select('u')
   ->from(Tutore::class, 'u')
   ->andWhere($qb->expr()->concat($qb->expr()->concat('u.nom', $qb->expr()->literal(' ')), 'u.prenom'), ':fullname')
   ->andWhere($qb->expr()->eq('u.ancien', 0))
   ->setParameter('fullname', $fullname);

return $qb->getQuery()->getOneOrNullResult();

错误消息:

Uncaught PHP Exception Doctrine\ORM\Query\QueryException: "[Syntax Error] line 0, col 77: Error: Expected =, <, <=, <>, >, >=, !=, got 'AND'" at /vendor/doctrine/orm/lib/Doctrine/ORM/Query/QueryException.php line 54

我也试过替换这个:

$qb->expr()->literal(' '))

简单地说:“”。

php symfony doctrine query-builder dql
1个回答
0
投票

非常简单:

->andWhere("concat(u.nom, ' ', u.prenom) = :fullname")
.............................................................................
© www.soinside.com 2019 - 2024. All rights reserved.