Hi
Write like this.
Select
e.EmpId,
e.EmpName,
e.EmpSalary,
d.Designation
from tblEmployeeTable e
inner join tbDesignation d
on e.empId=d.empId
where e.empid=@empid
it will give you employee details with manager name.
For manager name you will have to use tbldesignation