I have 2 tables that I need to join.
1. Patients
2. LabResults
I want everyone in the Patients table.
I only want LabResults that match records in the Patients table.
The identifier that both tables contain is PatientID
How do I match all records in the Patients table to those that have the same PatientID in the LabResults table?
... View more