Instruction
That's right! Aliases are also convenient in other situations. Let's analyze the following situation:
We want to put information about children and their mothers into a database. At some point, we would also like to show children together with their mothers using a JOIN.
Let's say we store both children and mothers in the same table person. Each row has a column named mother_id. This column contains the ID of another row – the mother's row.
The question is: can we join the table person with the table person? The answer is simple: yes, we can! But you can't simply write this in your SQL query:
person JOIN person
You need to provide two different aliases for the same table:
SELECT * FROM person AS child JOIN person AS mother ON child.mother_id = mother.id;
Thanks to the aliases, the database engine will use the same table person twice – the first time to look for children and the second time to look for their mothers.
Exercise
We want to know who lives with the student Jack Pearson in the same room. Use self-joining to show all the columns for the student Jack Pearson together with all the columns for each student living with him in the same room.
Remember to exclude Jack Pearson himself from the result!
Stuck? Here's a hint!
Type:
SELECT * FROM student AS s1 JOIN student AS s2 ON s1.room_id = s2.room_id WHERE s1.name = 'Jack Pearson' AND s1.id <> s2.id;



