mysql - SQL query in Doctrine2 -
i need here, know how transform sql
query doctrine2 query using createquerybuilder?
select a.resposta,
(
select count(r.id)
car_resultado r2
left join car_resultado_inquerito ri2 on r2.id_resultado_inquerito = ri2.id
ri2.id_inquerito = 20 , r2.id_resposta = a.id
group r2.id_pergunta, r2.id_resposta
) total
car_resposta a
left join car_resultado r on ( r.id_resposta = a.id )
group a.id, r.id_resposta
i have no idea how it, because nested select
normally have create entities , repositories data database. in doctrine2 uncool way. can execute native sql.
if possible shouldn't , work classes if have complicated existing queries can it.
Comments
Post a Comment