Have a single MS Access table that includes the following fields;
EmpID---BeginDt---EndDt------Name
10235---1/1/08----12/31/08---Jill Smith
10235---1/1/09----12/31/09---Jill Smith
10236---6/1/08----12/31/08---Joe Smith
10237---1/1/09----12/31/09---Jane Smith
First objective is to extract all employees that have a End Date during Dec 2008 but not have a End Date during 2009.
Second objective is to extract all employees that have a End Date during 2009 that did not have an End Date during Dec 2008.
Is this possible? If so, how is it done?
My gut feeling is a query involving a left outer join...
Thanks in advance for any insight.
EmpID---BeginDt---EndDt------Name
10235---1/1/08----12/31/08---Jill Smith
10235---1/1/09----12/31/09---Jill Smith
10236---6/1/08----12/31/08---Joe Smith
10237---1/1/09----12/31/09---Jane Smith
First objective is to extract all employees that have a End Date during Dec 2008 but not have a End Date during 2009.
Second objective is to extract all employees that have a End Date during 2009 that did not have an End Date during Dec 2008.
Is this possible? If so, how is it done?
My gut feeling is a query involving a left outer join...
Thanks in advance for any insight.