数据库
首页 > 数据库> > 进阶Mybatis3.x的复杂sql查询相关知识总结

进阶Mybatis3.x的复杂sql查询相关知识总结

作者:互联网

知识点一:resultMap

Mybatis的SQL语句返回结果有两种
resultType
查询出的字段在相应的pojo中必须有和它相同的字段对应,或者基本数据类型
适合简单查询
resultMap
需要⾃定义字段,或者多表查询,⼀对多等关系,⽐resultType更强⼤
适合复杂查询

resultType举例
(这里写video是因为用了别名,具体可参考https://blog.csdn.net/weixin_45678130/article/details/113753841):
在这里插入图片描述
resultMap举例:
在这里插入图片描述

 <resultMap id="VideoResultMap" type="Video">

        <!--
        id 指定查询列的唯一标示
        column 数据库字段的名称
        property pojo类的名称
        -->
        <id column="id" property="id" jdbcType="INTEGER" />

        <result column="video_tile" property="title"  jdbcType="VARCHAR" />
        <result column="summary" property="summary"  jdbcType="VARCHAR" />
        <result column="cover_img"  property="coverImg"  jdbcType="VARCHAR" />

    </resultMap>


    <select id="selectBaseFieldByIdWithResultMap" resultMap="VideoResultMap">

        select id , title as video_tile, summary, cover_img from video where id = #{video_id}

    </select>

在这里插入图片描述

知识点二:ResultMap复杂对象⼀对⼀查询结果映射之association
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
VideoOrderMapper.xml:
其中查询了两个表(user和video_order) 注意看sql语句的拼接,将user属性放到了association中

<resultMap id="VideoOrderResultMap" type="VideoOrder">
        <id column="id" property="id"/>

        <result column="user_id" property="userId"/>
        <result column="out_trade_no" property="outTradeNo"/>
        <result column="create_time" property="createTime"/>
        <result column="state" property="state"/>
        <result column="total_fee" property="totalFee"/>
        <result column="video_id" property="videoId"/>
        <result column="video_title" property="videoTitle"/>
        <result column="video_img" property="videoImg"/>


        <!--
         association 配置属性一对一
         property 对应videoOrder里面的user属性名
         javType 这个属性的类型
         -->
        <association property="user" javaType="User">
            <id property="id"  column="user_id"/>
            <result property="name" column="name"/>
            <result property="headImg" column="head_img"/>
            <result property="createTime" column="create_time"/>
            <result property="phone" column="phone"/>
        </association>

    </resultMap>

    <!--一对一管理查询订单, 订单内部包含用户属性-->
    <select id="queryVideoOrderList" resultMap="VideoOrderResultMap">

        select

         o.id id,
         o.user_id ,
         o.out_trade_no,
         o.create_time,
         o.state,
         o.total_fee,
         o.video_id,
         o.video_title,
         o.video_img,
         u.name,
         u.head_img,
         u.create_time,
         u.phone
         from video_order o left join user u on o.user_id = u.id

    </select>

在这里插入图片描述

启动类调用:
在这里插入图片描述

知识点三:ResultMap复杂对象⼀对多查询结果映射之collection

此处代码目的是查询所以用户的订单接口,是一种很常见的接口。其中每个用户可能会对应很多订单,所以用到了一对多的collection。
其中sql语句的left join代表左连接,因为主要是查询用户,所以用户放在左边。
关于colletion中property和ofType的写法(取决于下图这里)

property 填写pojo类中集合类属性的名称
ofType 集合里面的pojo对象

在这里插入图片描述


    <resultMap id="UserOrderResultMap" type="User">

        <id property="id"  column="id"/>
        <result property="name" column="name"/>
        <result property="headImg" column="head_img"/>
        <result property="createTime" column="create_time"/>
        <result property="phone" column="phone"/>

        <!--
        property 填写pojo类中集合类属性的名称
        ofType 集合里面的pojo对象
        -->
        <collection property="videoOrderList" ofType="VideoOrder">

            <!--配置主键,管理order的唯一标识-->
            <id column="order_id" property="id"/>
            <result column="user_id" property="userId"/>
            <result column="out_trade_no" property="outTradeNo"/>
            <result column="create_time" property="createTime"/>
            <result column="state" property="state"/>
            <result column="total_fee" property="totalFee"/>
            <result column="video_id" property="videoId"/>
            <result column="video_title" property="videoTitle"/>
            <result column="video_img" property="videoImg"/>
        </collection>
    </resultMap>

    <select id="queryUserOrder" resultMap="UserOrderResultMap">
        select
        u.id,
        u.name,
        u.head_img,
        u.create_time,
        u.phone,
        o.id order_id,
        o.out_trade_no,
        o.user_id,
        o.create_time,
        o.state,
        o.total_fee,
        o.video_id,
        o.video_title,
        o.video_img
        from user u left join video_order o on u.id = o.user_id

    </select>

在这里插入图片描述


总结:


association 映射的是⼀个pojo类,处理⼀对⼀的关联关系。
collection 映射的⼀个集合列表,处理的是⼀对多的关联关系

<!-- column不做限制,可以为任意表的字段,⽽property须为type 定义的pojo属性-->
<resultMap id="唯⼀的标识" type="映射的pojo对象">
 <id column="表的主键字段,或查询语句中的别名字段" jdbcType="字段类型" property="映射
pojo对象的主键属性" />
 <result column="表的⼀个字段" jdbcType="字段类型" property="映射到pojo对象的⼀个属
性"/>
 <association property="pojo的⼀个对象属性" javaType="pojo关联的pojo对象">

 <id column="关联pojo对象对应表的主键字段" jdbcType="字段类型" property="关联pojo
对象的属性"/>
 <result column="表的字段" jdbcType="字段类型" property="关联pojo对象的属性"/>
 </association>
 <!-- 集合中的property 需要为oftype定义的pojo对象的属性-->
 <collection property="pojo的集合属性名称" ofType="集合中单个的pojo对象类型">
 <id column="集合中pojo对象对应在表的主键字段" jdbcType="字段类型" property="集合
中pojo对象的主键属性" />
 <result column="任意表的字段" jdbcType="字段类型" property="集合中的pojo对象的属
性" />
 </collection>
</resultMap>

标签:进阶,Mybatis3,create,img,查询,video,user,sql,id
来源: https://blog.csdn.net/weixin_45678130/article/details/113781320