Hi, I'm attempting my first right join and its not going very good so far... What I'm trying to accomplish is list ALL of the CertificationID and CertificationName regardless of the WHERE condition and then only the EmployeeCertificationDateExpires and EmployeeCertificationDocument of those that do meet the WHERE condition... Ok, so here are the two tables...Certifications--CertificationID--CertificationName--CertificationLifeSpanEmployeeCertifications--EmployeeID--CertificationID--EmployeeCertificationDateAttended--EmployeeCertificationDateExpires--EmployeeCertificationDocumentAnd here is the Stored Procedure that I'm trying to use...ALTER PROCEDURE dbo.GetEmployeeCertifications ( @EmployeeID int )As Set NoCount On; SELECT EmployeeCertifications.EmployeeCertificationDateExpires, EmployeeCertifications.EmployeeCertificationDocument, Certifications.CertificationID, Certifications.CertificationNameFROM EmployeeCertifications RIGHT JOIN Certifications ON EmployeeCertifications.CertificationID = Certifications.CertificationIDWHERE EmployeeCertifications.EmployeeID = @EmployeeID ;