我想为我的内部报告目的获取员工 ID、休假原因、休假类型和员工姓名。我写了一个 SQL 查询来检索这些数据,我也得到了一些重复的数据。
似乎缺少一些加入/外国ID映射部分
select
h.id as employee_id,h.name as leave_reason,
s.name,r.name as res_name
from
hr_holidays_status s,
hr_holidays h,
hr_employee e,
resource_resource r
where
h.employee_id=e.id and
h.holiday_status_id=s.id and
e.resource_id=r.id
order by
resource_id