码迷,mamicode.com
首页 > 其他好文 > 详细

10-many2one

时间:2018-11-06 00:51:52      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:连接查询   abc   try   ace   结果   soc   mini   one   tco   

多表连接查询

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

    <!-- 多表连接查询 -->

    <!-- 定义结果映射关系 -->
    <resultMap type="Minister" id="ministerMap">
        <id column="mid" property="mid" />
        <result column="mname" property="mname" />
        <association property="country" javaType="Country">
            <id column="cid" property="cid" />
            <result column="cname" property="cname" />
        </association>
    </resultMap>

    <select id="selectMinisterById" resultMap="ministerMap">
        select mid,mname,cid,cname
        from minister, country
        where countryId=cid and mid=#{xxx}
    </select>

</mapper>

 

多表单独查询

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

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

    <select id="selectCountryByMinister" resultType="Country">
        select cid,cname from country where cid=#{jjj}
    </select>

    <!-- 定义结果映射关系 -->
    <resultMap type="Minister" id="ministerMap">
        <id column="mid" property="mid" />
        <result column="mname" property="mname" />
        <association property="country" 
                     javaType="Country"
                     select="selectCountryByMinister"
                     column="countryId"/>
    </resultMap>

    <select id="selectMinisterById" resultMap="ministerMap">
        select mid,mname,countryId from minister where mid=#{xxx}
    </select>

</mapper>

 

10-many2one

标签:连接查询   abc   try   ace   结果   soc   mini   one   tco   

原文地址:https://www.cnblogs.com/csslcww/p/9912318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!