(1)定义中间类

SSM框架day02-MyBatis——052——关联查询-many2many-多表单独查询

(2)映射文件

<mapper namespace="com.abc.dao.IStudentDao">

    <!-- 多表单独查询 -->

    <select id="selectCourseById" resultType="Course">
        select cid,cname from course where cid=#{jjj}
    </select>

    <resultMap type="Middle" id="middleMap">
        <id column="id" property="id"/>
        <association property="course"
                     javaType="Course"
                     select="selectCourseById"
                     column="courseId"/>
    </resultMap>

    <select id="selectMiddleByStudent" resultMap="middleMap">
        select id,courseId from middle where studentId=#{ooo}
    </select>

    <resultMap type="Student" id="studentMap">
        <id column="sid" property="sid" />
        <result column="sname" property="sname" />
        <collection property="courses"
                    ofType="Course"
                    select="selectMiddleByStudent"
                    column="sid"/>
    </resultMap>

    <select id="selectStudentById" resultMap="studentMap">
        select sid,sname from student where sid=#{xxx}
    </select>
</mapper>

(3)多表复杂查询

SSM框架day02-MyBatis——052——关联查询-many2many-多表单独查询

SSM框架day02-MyBatis——052——关联查询-many2many-多表单独查询



相关文章:

  • 2022-02-24
  • 2021-06-27
  • 2021-08-28
  • 2021-11-20
  • 2022-01-17
  • 2022-02-27
  • 2021-11-28
  • 2021-08-05
猜你喜欢
  • 2021-10-28
  • 2021-07-14
  • 2021-11-27
  • 2021-09-07
  • 2021-06-25
  • 2021-10-06
相关资源
相似解决方案