Here is my code:

$query = $this->em->createQuery("select t.name,(select count(v) from Entity\Vacancy v where v.tags like '%t.name%') as weight from Entity\Tag t");

The problem:

in quoted string t.name does not is replaced by value;

In sql format everything is working fine:

select tag.*,(select count(*) from vacancy where vacancy.tags like CONCAT('%',tag.name,'%')) as weight from tag

i try CONCAT (dql parameter) but parser throw errors, after LIKE parser wait only for a string.

Have any way to do that?

link|improve this question

78% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.