What is a self join?
Bhasker Das
Select an image from your device to upload
Just in case, if they ask you to write query....
TableName: T1, Columns: EId, EName, MId
select E1.EId as EmployeeId, E1.Ename as EmployeeName, E2.EName as ManagerName from T1 as E1, T1 as E2 where E1.MId = E2.EId