adamthenewbie
Programmer
ok I have this SQL statement
SELECT c.title FROM calendar c, onlineReg_meet_info m WHERE c.id = m.calendar_id
This displays all the calendar title that are both in onlineReg_meet_info and calendar
Basically I am trying to write a SQL statment to do the opposite. I want to display the titles of the calendar events in calendar that are NOT in onlineReg_meet_info
How would I go about this?
SELECT c.title FROM calendar c, onlineReg_meet_info m WHERE c.id = m.calendar_id
This displays all the calendar title that are both in onlineReg_meet_info and calendar
Basically I am trying to write a SQL statment to do the opposite. I want to display the titles of the calendar events in calendar that are NOT in onlineReg_meet_info
How would I go about this?