You are defeating the purpose of a left join by specifying values for month and year in your where clause, bacause that will prevent it returning rows where there is no match for ProviderPatient.If you only want rows from ProviderPatient for that month and year, you should move the condition to the join clause.Select a.ContactFacilityNo, b.PctASA, b.PctBetaBlocker, b.TimeToThrombolytics, b.TimeToPCAFrom tblJoinFacilityContact a Left Outer Join ProviderPatient b on a.ContactFacilityNo = b.ContactFacilityNo and b.Act_Month = 5 and b.Act_Year = 2006Where a.MedicalFacilityID = 2
CODO ERGO SUM