让我们假设我的数据库包含以下细节: -
productid updateddate
1 24-03-2011 23:00:00
1 25-03-2011 23:00:00
2 25-03-2011 23:45:55
2 12-03-2011 23:45:22
我希望从数据库中获取详细信息,如:
productid updateddate
1 25-03-2011 23:00:00
2 25-03-2011 23:45:55
所以我在hql中编写了像
这样的查询from Summary t inner join(select productID,MAX(updatedDate) as Date from Regression
group by productID) x on x.productID = t.productID and x.Date = t.updatedDate;
当我在sql querybook中写入时,它没有显示所需的输出,但是当我在hql中写入时它表示错误为:
最大单词显示意外错误。