mysql多表左连接查询例子参考

本文以OA项目为背景,介绍了如何使用MyBatis生成SQL语句进行MySQL的多表左连接查询,通过示例展示了几种不同的左连接查询方法。
摘要由CSDN通过智能技术生成


OA项目

mybatis参考

<select id="queryList" parameterType="map"
        resultType="com.zhensheng.entity.BusAfficheEntityQuery">

        <!-- 查询该用户的接收公告id -->
        select
        <include refid="afficheField" />
        ,person.is_readed AS isRead,dict.label AS modelName
        from bus_affiche AS
        affiche LEFT JOIN bus_affiche_person AS person
        on affiche.id =
        person.affiche_id AND person.person_id = #{userId}
        JOIN
        sys_dict AS dict
        on dict.id = affiche.affiche_type
        where
        affiche.id in
        (
        select distinct
        receive.missive_id
        from
        bus_affiche_receive AS receive
        <where>
            <!-- 用户id -->
            receive.condition_value =
            <if test="userId != null and userId != ''">
                #{userId}
            </if>
            <!-- 部门id -->
            or receive.condition_value in
            <if test="orgId != null and orgId != ''">
                <foreach collection="orgId" item="oId" open="(" separator=","
                    close=")">
                    #{oId}
                </foreach>
            
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值