Doctrine Query Language (DQL) is an Object Query Language created for helping users in complex object retrieval.
Since other (old) questions didn't get proper answers, I'll try it again: I regularly come across a scenario, where I …
php symfony doctrine-orm doctrine dqlI use Symfony 2 and Doctrine. In my database MySQL, I have a field of type DateTime. In my Repository file, …
mysql datetime symfony doctrine-orm dqlI have a few objects created on my database and I need to delete some of the repeating attributes related …
dql documentum dfc emcI need some help when select only discriminator column from doctrine 2 when run the DQL below SELECT p.type FROM …
php symfony doctrine-orm dql discriminatorIn a Symfony2 project: select * from ( select p.name as product, u.id, u.name from user u left join …
symfony doctrine-orm doctrine dql doctrine-queryI have a Doctrine model (Assignment), which has a many-to-one relationship with another model (Region). Assignments are owned by users (…
doctrine-orm dql many-to-oneI have two entities User and Article with many-to-many relation as Article can have many authors. class User { /** @var string */ …
doctrine-orm dqlI have an issue with DQL in Doctrine 2. Subqueries seem to be unavailable in DQL, so I don't know how …
doctrine-orm zend-framework2 dql doctrine-query