当然のように FLOOR 関数が使えると思ってた。 $qb = $this->getDoctrine() ->getRepository('MyBundle:Test') ->createQueryBuilder('test') ->select('COUNT(test.id) AS rows') ->addSelect('FLOOR(test.hoge / test.fuga) AS rate'); ~~ ~~ ~~ $result = $qb->getQuery()->getResult(); Symfony2 で上記のような DQL を書いて実行したときに、こんなエラーがでた。 QueryException: [Syntax Error] line {LINE}, col {COL}: Error: Expected known function, got 'FLOOR' in /p