I have a query which is pulls data from one table called "Employee_Info". Table consist of the following:
EmpID
Date
LName
The query I have displays the information like this:
EmpID Date LName
2134 1/24/2013 John Doe
3443 2/14/2013 James Frank
Is it possible to have the query display the info like and if so how is this accomplished?
EmpID Date LName EmpID_1 Date_1 LName
2134 1/24/2013 John Doe 3443 2/14/2013 James Frank
EmpID
Date
LName
The query I have displays the information like this:
EmpID Date LName
2134 1/24/2013 John Doe
3443 2/14/2013 James Frank
Is it possible to have the query display the info like and if so how is this accomplished?
EmpID Date LName EmpID_1 Date_1 LName
2134 1/24/2013 John Doe 3443 2/14/2013 James Frank