I would like to write nested query with Doctrine; Sample SQL is like below:
SELECT * FROM layer WHERE layer.id NOT IN
(SELECT task_id FROM users_tasks WHERE user_id = 1)
AND parent_id IS NOT NULL AND leaf IS TRUE
I have problem converting the SECOND SELECT
statement.
Thanks in advance.
I would like to make it with createQueryBuilder
not createQuery
.