内部レポート用に、従業員 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