如何在SpringBoot Cassandra的where子句中使用IN运算符

时间:2016-09-25 13:51:53

标签: spring-boot cassandra

我正在尝试从SpringBoot存储库运行以下查询

@Query("select * from c where id1 =?0 and id2 =?1 and id3 =?2 and c1 =?3 and year in :year and month in :month and day in :day and hour in :hour and minute in :minute"
public List<Counter> findCWithinRangeIn(
    @Param("id1") String id1,
    @Param("id2") String id2,
    @Param("id3") String id3,
    @Param("c1") String c1,
    @Param("year") List<Integer> year,
    @Param("month") List<Integer> month,
    @Param("day") List<Integer> day, 
    @Param("hour") List<Integer> hour,
    @Param("minute") List<Integer> minute);

但总是遇到错误:绑定变量的数量无效。

请建议如何进一步处理。

注意:我确实关注Spring CrudRepository findByInventoryIds(List<Long> inventoryIdList) - equivalent to IN clause,但它对我不起作用。

我想执行类似的事情:

select * from c
where id1 ="xyz" and 
      id2 ="abc" and 
      id3 ="pqr" and 
      c1 = "Sample" and
      year IN (2016,2017) and
      month IN (9,10,11) and
      day IN (19,20,24) and
      hour IN (23, 13) and
      minute IN (50, 51, 53)

1 个答案:

答案 0 :(得分:1)

如果您不需要指定自定义查询,这可能对您有用(基于方法名称)

String str = "STACK 2013 OVERFLOW3";

注意:在您的Counter实体中,字段的名称必须与方法名称中指定的属性名称相匹配。