Hi,
I have a query:
SELECT StartTime, EndTime, MeetingID, Provisional, Food
FROM Meetings
WHERE Date=#2/1/2006# And RoomID=5
ORDER BY StartTime;
And this works fine. I also have a table called Attendees that which basically shows what users are attending the meeting which has it's details stored in table 'Meetings'.
The Attendees table has UserID, MeetingID and Arrived which is a Yes/No field.
Is there anyway I can execute a query which will pull all meetings for and join it with the total records in the Attendees table where the MeetingID is the same and also the total number of records where the MeetingID is the same and Arrived is set to False.
Hope that makes sense!
cheers
I have a query:
SELECT StartTime, EndTime, MeetingID, Provisional, Food
FROM Meetings
WHERE Date=#2/1/2006# And RoomID=5
ORDER BY StartTime;
And this works fine. I also have a table called Attendees that which basically shows what users are attending the meeting which has it's details stored in table 'Meetings'.
The Attendees table has UserID, MeetingID and Arrived which is a Yes/No field.
Is there anyway I can execute a query which will pull all meetings for and join it with the total records in the Attendees table where the MeetingID is the same and also the total number of records where the MeetingID is the same and Arrived is set to False.
Hope that makes sense!
cheers