如何限制查询结果。我的意思是如何从 cassandra 表中返回行的子集
@存储库-
@Query("select * from customer_request_v2 where product_id = ?0 and receipt_period = ?1")
Page<CustomerReq>
findByProductIdAndReceiptPeriod(String productId, String receiptPeriod);
如何限制查询结果。我的意思是如何从 cassandra 表中返回行的子集
@存储库-
@Query("select * from customer_request_v2 where product_id = ?0 and receipt_period = ?1")
Page<CustomerReq>
findByProductIdAndReceiptPeriod(String productId, String receiptPeriod);