G
ghostman via AccessMonster.com
is it possible to display all the records not on a specified month?
Ex. How many instructors are available in the month of September 2009?
InstructorID FirstName LastName VacationScheduleF VacationScheduleT
100012 Melchora Aquino 9/01/2009 09/30/2009
100015 Leonor Rivera 11/7/2009 12/7/2009
100021 Maja Salvador 12/15/2009 1/15/2010
the query should display all instructor names except the instructors on
vacation for the month of September 2009.
how can i do that?
Here's the SQL:
SELECT Instructors.[InstructorID], Instructors.[FirstName], Instructors.
[MiddleName], Instructors.[LastName], Instructors.[Initials], Instructors.
[JobPosition], Instructors.[VacationScheduleF], Instructors.
[VacationScheduleT]
FROM Instructors;
i've tried searching here but no luck...please help!
Thanks in advance
Ex. How many instructors are available in the month of September 2009?
InstructorID FirstName LastName VacationScheduleF VacationScheduleT
100012 Melchora Aquino 9/01/2009 09/30/2009
100015 Leonor Rivera 11/7/2009 12/7/2009
100021 Maja Salvador 12/15/2009 1/15/2010
the query should display all instructor names except the instructors on
vacation for the month of September 2009.
how can i do that?
Here's the SQL:
SELECT Instructors.[InstructorID], Instructors.[FirstName], Instructors.
[MiddleName], Instructors.[LastName], Instructors.[Initials], Instructors.
[JobPosition], Instructors.[VacationScheduleF], Instructors.
[VacationScheduleT]
FROM Instructors;
i've tried searching here but no luck...please help!
Thanks in advance