T-SQL 101: 109 Joining a table to itself (self joins)
One thing you might not have considered is that a table can also be joined to itself.
Imagine that I want a list of employees, but I also want their manager’s details, the employee ID and the name for the manager. Now the problem is they’re both in the same table, but they’re different rows in that same table because a manager is also an employee.
The way I did this in the example is to say that I’m reading from Employees and then joining to Employees i.
2025-02-05