这是SQL语句:
SELECT opc.contenido, COUNT(r.idOpcPregunta)
from Opcionesrespuestas as opc LEFT JOIN Respuestasimples as r ON r.idOpcPregunta = opc.idOpcPregunta
where opc.idPregunta ='6'
GROUP BY opc.idOpcPregunta;
最佳答案
这是一个HQL
select opc.contenido, count(r.idOpcPregunta)
from Opcionesrespuestas as opc
left join opc.OpcPregunta as r
where opc.idPregunta ='6'
group by opc.contenido;