gpt4 book ai didi

java - JPA 查询 : How to check IS NULL or IS NOT NULL?

转载 作者:行者123 更新时间:2023-12-02 16:13:36 25 4
gpt4 key购买 nike

我有下面的参数是

Boolean isActive = true/false

我需要在 JPA 查询中传递这个参数。

true =  IS NOT NULL
false = IS NULL

@Query("select t from Test t WHERE t.active = ?1")
Optional<Test> findByIds(Boolean isActive);

我怎样才能做到这一点,而不是为 IS NULL 和 IS NOT NULL 创建 2 个单独的查询。

最佳答案

可以通过以下方式实现

@Query("select t from Test t WHERE (?1 = true AND t.active IS NOT NULL) OR
(?1 = false AND t.active IS NULL")
Optional<Test> findByIds(Boolean isActive);

关于java - JPA 查询 : How to check IS NULL or IS NOT NULL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67381257/

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