Något sådant här kan hjälpa:
Först lite testdata:
DECLARE @DoctorInfo TABLE
(
doctorId INT,
fistName VARCHAR(100),
seniorDoctorId INT
)
INSERT INTO @DoctorInfo
VALUES
(34,'ABC',0),
(35,'XYZ',34),
(36,'bsd',34),
(37,'dfdf',35),
(38,'dffdg',0)
Frågan så här:
DECLARE @doctorId INT
SET @doctorId=35
;WITH CTE(doctorId,seniorDoctorId,fistName)
AS
(
SELECT
DoctorInfo.doctorId,
DoctorInfo.seniorDoctorId,
DoctorInfo.fistName
FROM
@DoctorInfo AS DoctorInfo
WHERE
[email protected]
UNION ALL
SELECT
DoctorInfo.doctorId,
DoctorInfo.seniorDoctorId,
DoctorInfo.fistName
FROM
@DoctorInfo AS DoctorInfo
JOIN CTE
ON DoctorInfo.seniorDoctorId=CTE.doctorId
)
SELECT
*
FROM
CTE
För att få den önskade utdata behöver du inte använda seniorDoctorId
eftersom de redan har en förälder-barnrelation.
Se exempel här