Jpa Hql

Posted 正怒月神

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jpa Hql相关的知识,希望对你有一定的参考价值。

直接上代码

@Data
public class SS_Res 

    public SS_Res(String pol, String pod) 
        this.pol = pol;
        this.pod = pod;
    

   
    private String pol;
    private String pod;

Dao

@Query(value="select new com.example.SS_Res(" +
            " ss.pol " +
            " ,ss.pod " +
            " )"+
            " from ss_res ss , ssa_res ssa " +
            " where ss.ssUUID = ssa.ssaUUID  " +
            " and (ifnull(:companyUUID,'')='' or ssa.companyUUID=:companyUUID) " 
    List<SS_Res> findHqlExample(@Param("companyUUID")String companyUUID);

以上是关于Jpa Hql的主要内容,如果未能解决你的问题,请参考以下文章

使用 JPQL/HQL 在 JPA 中订购连接获取的集合

JPA 查询连接错误:org.hibernate.hql.internal.ast.QuerySyntaxException:连接所需的路径

Atitit oodbms的查询,面向对象的sql查询jpa jpql hql

jpa 联表查询 返回自定义对象 hql语法 原生sql 语法 1.11.9版本

springboot jpa自定义查询

在没有 JQL/HQL 的 Spring JPA 中返回实体 A 和实体 B 的连接并存储在实体 C 中