上图是我用于记录项目位置随时间变化的数据库结构的简化版本.我编写了以下SQL查询,它返回每个位置的当前项目清单:
select * from ItemLocationLog l inner join (select g.idItemLocationLog,max(g.dateTime) as latest from ItemLocationLog g group by g.idItem) as i on l.idItem = i.idItem and l.dateTime = i.latest
我遇到的问题是我想将其转换为HQL,但是我没有找到在子查询上执行INNER JOIN的语法,看起来这似乎不受支持.有没有办法将上面的内容转换为HQL(或标准),或者在这种情况下我是否必须使用标准的SQL查询?谢谢.
解决方法
http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/queryhql.html#queryhql-subqueries
Note that HQL subqueries can occur only in the select or where clauses.