我正在使用JPA执行下面给出的原生查询
@Query(value="SELECT pintable.pin from pintable s
where s.status=1
and (:pincodes is null or ifnull(s.pincode,'') in (:pincodes)) "
, nativeQuery = true)
字符串
对于可选的pincode(null),它工作得很好,对于单个pincode搜索也很好。当我使用多个值进行搜索时,得到如下错误。
Caused by: org.hibernate.exception.DataException: JDBC exception executing SQL [SELECT pintable.pin from pintable s where s.status=1 and ((?,?) is null or ifnull(s.pincode,'') in (?,?))
Caused by: java.sql.SQLException: Operand should contain 1 column(s)
型
请让我知道如何处理多值可选搜索。
1条答案
按热度按时间fumotvh31#
要在JPA中处理可选参数的多个值,特别是在使用IN子句时,您可能需要调整方法。解决此问题的一种方法是根据可选参数是null还是包含多个值来不同地处理可选参数。
字符串
在您的调用代码中:
如果你想通过一个pincode查找,传递一个只包含那个pincode的列表。如果你想通过多个pincode查找,传递一个包含所有这些pincode的列表。
举例来说:
型
这样,查询将处理两种情况:当pincode为null(忽略pincode条件)时,以及当它包含多个值时,适当地使用IN子句。根据您的特定用例和数据结构,根据需要调整代码。