Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Sql Quickie!!

Options
  • 20-10-2006 5:06pm
    #1
    Registered Users Posts: 648 ✭✭✭


    hi

    i have 2 tables events and budget
    i need to select the events in teh past that do not have a budget entry

    below returns all events in the past ... i just dont know how to join them so as they only return the ones that DONT have a budget entry.

    anyone know?

    many thanks



    SELECT g.gigcal_gigs_id , g.gigtitle, g.gigdate FROM #__gigcal_gigs as g LEFT JOIN #__budget as b ON (b.event=g.gigcal_gigs_id) WHERE g.gigdate < '$now' ORDER BY g.gigdate


Comments

  • Registered Users Posts: 43,931 ✭✭✭✭Basq


    Possibly..
    SELECT g.gigcal_gigs_id , g.gigtitle, g.gigdate FROM #__gigcal_gigs as g LEFT JOIN #__budget as b ON (b.event=g.gigcal_gigs_id) WHERE g.gigdate < '$now' and g.gigdate is not null ORDER BY g.gigdate


Advertisement