HQL取满足条件最新一条记录(max()函数的使用)

项目中要查询满足条件的最新一条记录,用的是Hibernate框架,因此要使用HQL语句:

from DeviceUseRecord where DeviceUseRecord.id =(select max(DeviceUseRecord.id) from DeviceUseRecord where DeviceUseRecord.deviceNo='xxxxxx')";

结果执行时出错查不出结果,网上查找资料才知道,运用HQL的max等函数要定义别名,

http://blog.csdn.net/jinglecat/article/details/445296

然后HQL语句改为:

from DeviceUseRecord where DeviceUseRecord.id =(select max(model.id) from DeviceUseRecord as model where mode.deviceNo='xxxxxx')";

结果执行时还是出错查不出结果,后来将HQL语句改为:

from DeviceUseRecord  as dur  where dur.id =(select max(model.id) from DeviceUseRecord as model where mode.deviceNo='xxxxxx')";

之后,就可以正确执行了。

不知道为何子句和父局都要定义别名,不过问题解决了。

你可能感兴趣的:(Hibernate)