Führen Sie Raw SQL mit Doctrine Manager aus
$em = $this->getDoctrine()->getManager();
$stmt = $em->getConnection()->prepare($sql);
$stmt->execute();
return $stmt->fetchAll();
Difficult Dragonfly