我试图从所选持续时间除以条目持续时间等于没有余数的表中进行选择。
$qb = $em->createQueryBuilder()
->from('AcmeBlogBundle:Entry', 'e')
->andWhere(":duration % e.duration = 0")
->setParameter('duration', $duration);
这将返回错误:
[Syntax Error] line 0, col 226: Error: Expected =, <, <=, <>, >, >=, !=, got '%'
这将在普通 SQL 中工作。有人知道如何使用 Doctrine 的查询构建器来做到这一点吗?