需要编写HQL查询,并带有连接优先级的同级连接

时间:2019-05-08 09:31:41

标签: hibernate spring-data-jpa hql

我想编写HQL查询,其中包含“通过兄弟姐妹连接,优先,从兄弟姐妹开始”。我正在通过本机查询获取数据,但我想使用HQL查询。

@Query(value = "select h from Hier h fetch all h.parentHierCd = prior h.hierCd and h.stat = 'A' start with h.hierCd = ?1 order siblings by h.hieCd")
List<Hier> getCommitteeTree(String parentCd);

0 个答案:

没有答案