我试图通过hibernate执行下面的报告mysql查询,我无法成功使用hibernate Restrictions和Projections选项。
SELECT sum(totalprice) as totalprice, hour(createdate) as createdate where day(createdate) = day(curdate()) group by day(createdate), hour(createdate)
有人可以帮我将这个sql查询转换为hibernate格式吗?或者是否有更好的选项可用于执行这些复杂的SQL查询?
答案 0 :(得分:0)
为什么不能使用存储过程来简化hibernate调用时的实现?