在休眠中选择唯一列表

时间:2018-05-21 10:33:51

标签: sql sql-server hibernate hql

我需要在hibernate中查询表中的最新记录。表包含终端Id的文件链接的多个版本。 e.g。

enter image description here

teminal_info_id是终端表的外键。在上图中,我需要所有具有最新版本的终端的列表,例如

1 3.0

3 2.0

4 6.0

这是我尝试过的,但它不起作用。

hql.append(" select distinct e.terminals.terminalId from TerminalFiles e");
            hql.append(" order by e.id desc ");

0 个答案:

没有答案