mybatis返回list类型数据

studends表里一条teacher_id 数据对应多条 student_id数据,所以通过teacher_id 查询出来的student_id 是一个List。

mybatis代码如下:

//返回类型是String类型的student_id <resultMap id="studentIdResult" type="java.lang.String" > <result column="student_id" property="studentId" jdbcType="VARCHAR" /> </resultMap> //入参类型(parameterType)是String类型 teacherId <select id="getStudentsByTeacherId" resultMap="studentIdResult" parameterType="java.lang.String" > select student_id from student where teacher_id = #{id,jdbcType=VARCHAR} </select>
    原文作者:MyBatis
    原文地址: https://www.cnblogs.com/Isabella-CC/p/8006986.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞