Hi,
I have this query but it not work. What is the problem?
What object return this query?
Code:
"select ci.id," +
" ci.area," +
" ci.nombre," +
" ci.descripcionCorta," +
" ci.fechaGrabacion" +
" count(ci.logEjecucionInformes.id)," +
" max(ci.logEjecucionInformes.fechaEjecucion)" +
" from CabeceraInforme ci" +
" group by ci.id," +
" ci.area," +
" ci.nombre," +
" ci.descripcionCorta," +
" ci.fechaGrabacion" +
" order by ci.area," +
" ci.nombre," +
" ci.descripcionCorta," +
" ci.fechaGrabacion");
Where can I find a good HQL Manual?
Thank you,
Praedos