2020
12-29
12-29
Mybatis使用IN语句查询的实现
一、简介在SQL语法中如果我们想使用in的话直接可以像如下一样使用:select*fromHealthCouponwhereuseTypein('4','3')但是如果在MyBatis中的使用in的话,像如下去做的话,肯定会报错:Map<String,Object>selectByUserId(@Param("useType")StringuseType)<selectid="selectByUserId"resultMap="BaseResultMap"parameterType="java.lang.String">select*fromHealthCouponwhereuseTypein(#{useType,jdbcTyp...
继续阅读 >