有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何将SQL查询转换为HQL查询?

如何将以下SQL查询转换为HQL查询

select c.*, count(o.*)

from Cooperativa as c
     left join Operatore as o on c.id = o.id_cooperativa

where c.flag_cancellazione = 0

group by c.id 

order by c.id desc

谢谢


共 (1) 个答案