Viewing post 1 (of 1 total)
Why not the following?
SELECT a.EmployeeID,a.Salary a.RActive
b.ManagerName
FROM Employees a (nolock)
,Managers b (nolock)
WHERE...
January 20, 2012 at 12:30 am
#1436297