hsingh1981
Programmer
Hi all i have query which shows all staff who had training using the course id. How do i find staff who haven't had training on a paticular courseid...such as course id = 5?
my current sql statement is:
many thanks
my current sql statement is:
Code:
SELECT dbo_Staff.Firstname, dbo_Staff.Surname, dbo_T_MandatoryTraining.TrainingDate, dbo_T_MandatoryTraining.CourseID
FROM dbo_Staff LEFT JOIN dbo_T_MandatoryTraining ON dbo_Staff.StaffID = dbo_T_MandatoryTraining.StaffID;
many thanks