Not sure how to do this...
Problem:
I have the results from two queries, and would like them to be combined in one resulset.
For example,
Query 1 return:
id,
startWeek
hours
employeeID
taskID
Query 2 returns:
dateUpdated
hours
employeeID
I would like the results to be combined like this
id
startWeek - dateUpdated
hours - hours
employeeID - employeeID
taskID
I tried doing a "Select into" for each query, specifing the same temp table...
Ideas? Thoughts?
Help would be appreciated...
Thanks
Problem:
I have the results from two queries, and would like them to be combined in one resulset.
For example,
Query 1 return:
id,
startWeek
hours
employeeID
taskID
Query 2 returns:
dateUpdated
hours
employeeID
I would like the results to be combined like this
id
startWeek - dateUpdated
hours - hours
employeeID - employeeID
taskID
I tried doing a "Select into" for each query, specifing the same temp table...
Ideas? Thoughts?
Help would be appreciated...
Thanks