首页 > 其他 > 详细

Mybatis一对多和多对一的查询。

时间:2021-05-12 21:06:42      阅读:29      评论:0      收藏:0      [点我收藏+]
多对一
<select id="selectAllStudent" resultMap="StudentTeacher">
        select s.id as sid,s.name as sname,t.name as tname,t.id as tid from student as s,teacher as t
        where s.tid=t.id
    </select>

    <resultMap id="StudentTeacher" type="Student">
        <result property="id" column="sid"/>
        <result property="name" column="sname"/>
        <association property="teacher"  javaType="Teacher">
            <result property="id" column="tid"></result>
            <result property="name" column="tname"></result>

        </association>
    </resultMap>

javaType 参数是实体类的类型,property实体类变量的名。

一对多

 <select id="getTeacher" resultMap="TeacherStudent">
        select s.id as sid,s.name as sname,t.name as tname,t.id as tid
        from student as s,teacher as t
        where t.id=s.tid
        and t.id=#{tid}
    </select>
    <resultMap id="TeacherStudent" type="Teacher">
        <result property="id" column="tid"/>
        <result property="name" column="tname"/>
        <collection property="students" ofType="Student">
            <result property="id" column="sid"></result>
            <result property="name" column="sname"></result>
            <result property="tid" column="tid"></result>
        </collection>
    </resultMap>

Mybatis一对多和多对一的查询。

原文:https://blog.51cto.com/u_15052789/2770945

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!