Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: Problem with Join/Where

    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!

  • RE: Problem with Join/Where

    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 ...

  • RE: Problem with Join/Where

    DAVNovak (3/31/2008)


    Using the derived tables is one solution. Here is another that looks very similiar:

    SELECT p.name, p.dob, c1.charge, c2.charge, c3.charge

    FROM patients p

    LEFT OUTER JOIN charges c1...

Viewing 3 posts - 1 through 4 (of 4 total)