我想将pgsql查询转换为hibernate查询。查询: select distinct on (domain) * from usersreport where id = 'testOrg' and date = '2020-11-24 00:00:00.0'; 如何将此查询转换为hql查询。
select distinct on (domain) * from usersreport where id = 'testOrg' and date = '2020-11-24 00:00:00.0';
vsmadaxz1#
hibernate不支持 distinct on 查询。
distinct on
1条答案
按热度按时间vsmadaxz1#
hibernate不支持
distinct on
查询。