Springboot项目 Mysql数据库 简单三表联查

这篇博客展示了如何通过SQL左连接操作查询课程表、班级表和教师表,以获取所有课程名称和教师名称。查询条件包括指定班级ID,并且支持多种条件筛选如教师ID、课程时间等。查询结果映射到Lesson实体类中,包含课程、班级和教师的详细信息。
摘要由CSDN通过智能技术生成

需求是要查询课程表、班级表、教师表,查询出所有课程名称以及教师名称(课程表中存放的是班级id和教师id)

主要运用的是两个左连接        

select lesson.*,info_class.name AS className,sys_user.realname AS teacherName from lesson
LEFT JOIN info_class on lesson.class_id = info_class.id
LEFT JOIN sys_user on lesson.teacher_id = sys_user.id
where lesson.class_id = 8 and del =0

(课程表)

(班级表)

(教师表)

<resultMap id="BaseResultMapTeacher" type="com.yglh.entity.Lesson">
        <id column="id" jdbcType="BIGINT" property="id" />
        <id column="name" jdbcType="VARCHAR" property="name" />
        <id column="teacher_id" property="teacherId"/>
        <id column="class_id" property="classId"/>
        <id column="week" property="week"/>
        <id column="start_time" property="startTime"/>
        <id column="end_time" property="endTime"/>
        <id column="create_time" property="createTime"/>
        <id column="edit_time" property="editTime"/>
        <id column="teacherName" property="teacherName"/>
        <id column="className" property="className"/>
    </resultMap>

<!--    模糊查询-->
    <select id="findSm" parameterType="com.yglh.vo.LessonVo" resultMap="BaseResultMapTeacher">
        SELECT lesson.*,info_class.`name` as className,sys_user.realname AS teacherName from lesson
        LEFT JOIN info_class on lesson.class_id = info_class.id
        LEFT JOIN sys_user on lesson.teacher_id = sys_user.id
        <where>
            <if test="teacherId !=null">
                and lesson.teacher_id = #{teacherId}
            </if>
            <if test="classId !=null">
                and lesson.class_id = #{classId}
            </if>
            <if test="week !=null">
                and lesson.week = #{week}
            </if>

            <if test="startTime!=null">
                and lesson.start_time <![CDATA[>=]]> #{startTime}
            </if>
            <if test="endTime!=null">
                and lesson.end_time <![CDATA[<=]]> #{endTime}
            </if>

            AND del=0
        </where>
        order by id desc
    </select>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值