I have two tables with employee information and I want to select the record with latest date between those tables.
Table1
EmpNum Name StartDate refrance
1234 John 05Dec2009 999999
1255 Carl 06May2003 454545
1236 Smith 15Jan2011 889898
Table2
EmpNum Name StartDate refrance
1234 John 08Feb2014 111111
1255 Carl 25Jul2001 454545
1236 Smith 15Jan2011 889898
Expected output
EmpNum Name StartDate refrance
1234 John 08Feb2014 111111
1255 Carl 06May2003 454545
1236 Smith 15Jan2011 889898