0
這是SQL語句:如何將此語句從MySQL轉換爲HQL?
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;
我已經解決了謝謝'選擇opc.contenido, count(r.idOpcPregunta) from Respuestasimple as r right join r.idOpcPregunta as opc where opc.idPregunta ='6' group by opc.contenido' –