gpt4 book ai didi

java - 如何在 HQL 中使用 NOT LIKE?

转载 作者:行者123 更新时间:2023-11-30 08:30:06 27 4
gpt4 key购买 nike

我有一个实体如下

public class Employee implements Serializable {


@Id
@Column(name = "EMPSEQ")
@GeneratedValue(strategy = GenerationType.AUTO)
private Long empSeq;
@Column(name = "EMPID")
private String empId;
@Column(name = "WINDOWSLOGINID")
private String logInId;

// assume respective getter and setter methods
}

我想查询logInId不以“5”开头的所有行

我试过下面的代码:

query = session.createQuery("select * from Employee e where e.logInId not like 5%");

以上代码无效。在 HQL

中使用 NOT LIKE 的正确方法是什么

最佳答案

在您的查询中有一个错误:

query = session.createQuery("select * from Employee e where e.logInId not like 5%");

成为:

query = session.createQuery("select * from Employee e where e.logInId not like '5%'");

e.logInId是字符串,所以你必须引用你的条件5%。

关于java - 如何在 HQL 中使用 NOT LIKE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41449458/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com