mybatis子查询传参数的方法是什么

avatar
作者
猴君
阅读量:1

MyBatis中可以通过两种方式传递子查询的参数:

  1. 使用占位符(#{})方式传递参数:可以在子查询中使用#{}来表示参数,然后在父查询中通过parameterType指定参数类型,并在传递参数时将参数传递给父查询。例如:
<select id="getParentsByChildId" parameterType="java.lang.Integer" resultType="Parent">   SELECT * FROM parent WHERE id IN (     SELECT parent_id FROM child WHERE id = #{childId}   ) </select> 

然后在调用该子查询时,传递childId参数:

List<Parent> parents = sqlSession.selectList("getParentsByChildId", childId); 
  1. 使用<foreach>标签进行参数传递:可以在父查询中使用<foreach>标签来遍历参数列表,并将参数传递给子查询。例如:
<select id="getParentsByChildIds" parameterType="java.util.List" resultType="Parent">   SELECT * FROM parent WHERE id IN (     <foreach collection="childIds" item="childId" separator=",">       SELECT parent_id FROM child WHERE id = #{childId}     </foreach>   ) </select> 

然后在调用该子查询时,传递childIds参数:

List<Integer> childIds = new ArrayList<>(); childIds.add(1); childIds.add(2); List<Parent> parents = sqlSession.selectList("getParentsByChildIds", childIds); 

这样就可以将childIds中的值传递给子查询,并返回满足条件的父记录列表。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!