Hi
I have a table "Events" for users to add events with the following fields:
EventID
EventName
EventSlot (--> slotID)
EventSlotExtra (--> slotID) (optional)
EventLimit
And I have another table "Slots"
SlotID (int)
SlotTime (this is 9am-10am, 10am-11am, etc)
I need to query both tables so I can get a total of people attending events per SlotTime. I know how to do this when only EventSlot is selected but not when EventSlotExtra is also selected. Can you help?
Many thanks