在 Spring CrudRepository 中,我们如何定义一个包含两列的 IN 子句?
例如,一个只包含一列的 IN 子句,我们有以下方法:
List<Document> findByLookupRefernceCodeIn(List<String> lookupRefernceCodes);
但是如果我想在 IN 子句中有两列呢?这是我想要实现的有效 SQL 查询:
SELECT * FROM document
WHERE (lookup_reference_code, issued_date) IN (('AB1234', '2003-12-01'));