我想编写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);