数据库
首页 > 数据库> > msql中左连接查询数据未出显 eip项目

msql中左连接查询数据未出显 eip项目

作者:互联网

 select sum(a.duration_time) as quantity,b.dept_name,b.user_quantity from blade_employee_training_record_dept_user_quantity b
        LEFT JOIN (select * from blade_employee_training_record_detail
        where tenant_id=#{tenantId}
        <if test="startDate !=null and startDate !='' ">
            and end_training_date >= #{startDate}
        </if>
        <if test="startDate !=null and startDate !='' ">
            and end_training_date >= #{startDate}
        </if>
        ) a  on a.dept_name=b.dept_name
        GROUP BY b.dept_name

  

标签:eip,training,name,未出,startDate,msql,dept,select,quantity
来源: https://www.cnblogs.com/xianz666/p/14848462.html