Viewing 3 posts - 1 through 4 (of 4 total)
Ok, after 335 lines of SQL and 778 lines of VB, this trial-by-fire SQL is complete and working! Thanks for your help Dave!
April 2, 2008 at 9:52 am
#797356
I have a similar problem joining some other tables. Lets assume the aforementioned PATIENT table and the following:
[font="Courier New"]
APPOINTMENTS
appt_id pt_id appt_date ...
April 2, 2008 at 7:15 am
#797183
DAVNovak (3/31/2008)
SELECT p.name, p.dob, c1.charge, c2.charge, c3.charge
FROM patients p
LEFT OUTER JOIN charges c1...
March 31, 2008 at 2:20 pm
#796162