I have a requirement of using IN in a query which has a format of something like:
@Select("SELECT max(count) FROM whatevertable WHERE id IN (#{xyz})")
public int doSomething(List<Integer> xyz)
I tried searching but found all kinds of functions in XML but my requirement is using JAVA. Can anyone help me with this?