从员工自加入中删除重复项

Remove Duplicates from Employees Self Join

我有一个雇员table,所有雇员都在其中。我需要提取一部分员工及其相应的主管。 table 看起来类似于:

Emp_id | F_name | L_name | Superv_id  | Superv_flg
---------------------------------------------------
123      john      doe      456          N
456      jane      doe      278          Y
234      Jack      smith    268          N

到目前为止,我的查询如下所示:

with cte as 
(
    select f_name + ' ' l_name as supervisor, superv_id, emp_id
        from [dbo].[SAP_worker_all]
        where supvr_flag = 'Y'
    )
    SELECT distinct w.[first_name]
           ,w.[last_name]
           ,cte.supervisor
FROM [dbo].[SAP_worker_all] w
join  cte
        on w.[superv_id] = cte.[superv_id];

我得到了重复的值,返回的主管不是正确的值。我做错了什么?

如果 empID 是唯一的,则不应重复

SELECT w.*, s.*
 FROM [SAP_worker_all] w 
 JOIN [SAP_worker_all] s 
   ON s.[Emp_id] = w.[Superv_id] 
  AND s.[Superv_flg] = 'Y'