gpt4 book ai didi

Spring Data JPA 查询 - 使用 in 子句进行计数

转载 作者:行者123 更新时间:2023-12-03 03:06:42 25 4
gpt4 key购买 nike

我正在尝试使用 Spring Data JPA 和方法名称解析来实现以下查询。

select count(*) from example ex where ex.id = id and ex.status in (1, 2);

我知道 crud 存储库中有一个用于计数的方法,该方法类似于 - countByIdAndStatus(params) 但我不确定如何将“in”子句与此方法合并。

谢谢!

最佳答案

您可以这样做:

long countByIdAndStatusIn(Integer id, List<Type> params);

使用@Query:

@Query("select count(*) from Example ex where ex.id = ?1 and ex.status in (?2)")
long countByIdAndStatus(Integer id, List<Type> params);

关于Spring Data JPA 查询 - 使用 in 子句进行计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52058440/

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