I have two tables (Employee & Positions).
Table Employee
ID Employee Name
=================================
9999 John Doe
9998 Jane Doe
9997 Sally Doe
Table Positions
=================================
ID EmployeeID Position Start Date
Baker 9998 1/1/2004
Bakery Sup. 9998 10/1/2005
Bakery Manager 9998 1/1/2006
Bakery Sup. 9997 11/1/2005
Baker 9999 9/15/2005
I want to select ALL the Employees from the Employee table AND select only the NEWEST position or the position with the greatest date.
Any help?
Table Employee
ID Employee Name
=================================
9999 John Doe
9998 Jane Doe
9997 Sally Doe
Table Positions
=================================
ID EmployeeID Position Start Date
Baker 9998 1/1/2004
Bakery Sup. 9998 10/1/2005
Bakery Manager 9998 1/1/2006
Bakery Sup. 9997 11/1/2005
Baker 9999 9/15/2005
I want to select ALL the Employees from the Employee table AND select only the NEWEST position or the position with the greatest date.
Any help?