mybatis实现in查询,两种方法:
- xml形式(推荐)
- 注解方式(个人喜欢注解,但是in场景可能不太适合注解)
代码:
@Select("<script>"
+ "SELECT IDFA FROM t_xxx WHERE IDFA IN "
+ "<foreach item='item' index='index' collection='strList' open='(' separator=',' close=')'>"
+ "#{item}"
+ "</foreach>"
+ "</script>")
@Results(value = { @Result(column = "user_name", property = "username") })
public List<String> getXxxList(@Param("strList") List<String> strList);
说明:上述方式其实是一种注解完全代替xml的方法。
其中的foreach的collection直接写成@param中的值即可。