zoukankan      html  css  js  c++  java
  • many2many

    多表连接查询

    <mapper namespace="com.abc.dao.IStudentDao">
    
        <!-- 多表连接查询 -->
    
        <resultMap type="Student" id="studentMap">
            <id column="sid" property="sid" />
            <result column="sname" property="sname" />
            <collection property="courses" ofType="Course">
                <id column="cid" property="cid" />
                <result column="cname" property="cname" />
            </collection>
        </resultMap>
    
        <select id="selectStudentById" resultMap="studentMap">
            select sid,sname,cid,cname
            from student,course,middle
            where sid=studentId and cid=courseId and sid=#{xxx}
        </select>
    
    </mapper>


    多表单独查询

    <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>

    多表复杂查询

    <mapper namespace="com.abc.dao.IStudentDao">
    
        <!-- 多表复杂查询 -->
    
        <select id="selectCourseById" resultType="Course">
            select cid,cname from course where cid=#{ooo}
        </select>
    
        <resultMap type="Student" id="studentMap">
            <id column="sid" property="sid" />
            <result column="sname" property="sname" />
            <collection property="courses" 
                        ofType="Course"
                        select="selectCourseById"
                        column="courseId"/>
        </resultMap>
    
        <select id="selectStudentById" resultMap="studentMap">
            select sid,sname,courseId
            from student,middle
            where sid=studentId and sid=#{xxx}
        </select>
    
    </mapper>

     

     

     

  • 相关阅读:
    Pwn-warmup_csaw_2016 writeup
    操作系统习题总结
    操作系统-存储器管理部分(待更新)
    树与二叉树之间的互相转换
    黑客攻防技术宝典-反病毒篇笔记(三)
    jaegeropentracing的Java-client完整分布式追踪链
    jaegeropentracing的Java-client
    IDEA2018.2版本注册
    Spring整合CXF webservice restful 实例
    带有WS-Security验证的webservice
  • 原文地址:https://www.cnblogs.com/csslcww/p/9912383.html
Copyright © 2011-2022 走看看