mybatis實現in查詢,兩種方法:
代碼:
1 @Select("<script>" 2 + "SELECT IDFA FROM t_xxx WHERE IDFA IN " 3 + "<foreach item='item' index='index' collection='strList' open='(' separator=',' close=')'>" 4 + "#{item}" 5 + "</foreach>" 6 + "</script>") 7 @Results(value = { @Result(column = "user_name", property = "username") }) 8 public List<String> getXxxList(@Param("strList") List<String> strList); View Code說明:上述方式其實是一種注解完全代替xml的方法。
其中的foreach的collection直接寫成@param中的值即可。