आप एक सबक्वायरी का उपयोग कर सकते हैं। सबक्वेरी को Max(CompletedDate)
. मिलेगा . फिर आप इस मान को लेते हैं और उस तिथि के साथ नोट सहयोगी को पुनः प्राप्त करने के लिए फिर से अपनी टेबल पर शामिल होते हैं:
select ET1.TrainingID,
ET1.CompletedDate,
ET1.Notes
from HR_EmployeeTrainings ET1
inner join
(
select Max(CompletedDate) CompletedDate, TrainingID
from HR_EmployeeTrainings
--where AvantiRecID IS NULL OR AvantiRecID = @avantiRecID
group by TrainingID
) ET2
on ET1.TrainingID = ET2.TrainingID
and ET1.CompletedDate = ET2.CompletedDate
where ET1.AvantiRecID IS NULL OR ET1.AvantiRecID = @avantiRecID