0

我有这张表叫做employeetimesheets:

empsheet_id|employee_id|timesheet_status|last_update

该表允许经理访问所有员工时间表。一名员工可以有多个考勤表。我只想显示每位员工的最新条目。我在手册中阅读了我必须编写一个组最大子查询left joininner join但我不确定如何在这里进行。

到目前为止,这是我的查询:

$sqlempsheets="SELECT * FROM employeetimesheets JOIN employees ON employeetimesheets.employee_id=employees.employee_id WHERE employeetimesheets.timesheet_status='Pending Approval'";
$resultempsheets=mysqli_query($db,$sqlempsheets);
4

1 回答 1

2

尝试这个:

select *
from employeetimesheets t
join (
    select employee_id,
        max(empsheet_id) as empsheet_id
    from employeetimesheets
    group by employee_id
    ) t2 on t.employee_id = t2.employee_id
    and t.empsheet_id = t2.empsheet_id
join employees e on t.employee_id = e.employee_id
where t.timesheet_status = 'Pending Approval';

或使用left join

select t.*, e.*
from employeetimesheets t
left join employeetimesheets t2 on t.employee_id = t2.employee_id
    and t.empsheet_id < t2.empsheet_id
join employees e on t.employee_id = e.employee_id
where t.timesheet_status = 'Pending Approval'
    and t2.employee_id is null;
于 2017-04-03T18:07:08.223 回答