ELI5: what is a left and right join
// explanation
What are LEFT and RIGHT joins?
A LEFT join is like inviting all your friends from the left side of the room to a party, and then checking if anyone from the right side matches with them [2][3]. A RIGHT join does the oppositeโit invites everyone from the right side and checks if anyone from the left matches [2]. It's the same result, just depends which group you invite first [1].
How do they work?
Imagine you have a list of students on the left and a list of test scores on the right. A LEFT join keeps all the students, even if some don't have test scores [2]. A RIGHT join keeps all the test scores, even if some students are missing [2].
When do you use each one?
You'd use a LEFT join when you care most about the left table's data and want to see if it matches anything on the right [2]. You'd use a RIGHT join when the right table is more important [4]. But really, you can usually just flip which table comes first and use LEFT join instead [1][4].
Why does the order matter?
When you write SQL, the first table mentioned is the "left" one and the second is the "right" one [3]. So which join you pick depends on which table you listed first and which data you want to keep [1][3].
// sources
Nov 10, 2020 ... Keep in mind, that a right outer join and a left outer join is basically the same thing. It just depends on how you set up the query.
The SQL JOIN Clause ยท (INNER) JOIN : Returns only rows that have matching values in both tables ยท LEFT (OUTER) JOIN : Returns all rows from the left table, andย ...
Dec 18, 2024 ... Put them one under the other and read them top to bottom, left to right and you generally have the order in which tables are joined.
Jan 12, 2009 ... The only reason I can think of to use RIGHT OUTER JOIN is to try to make your SQL more self-documenting. You might possibly want to use leftย ...
Sep 30, 2019 ... A left join is when additionally, single men go out alone. A right join is just married couples and single women going out. A full joinย ...
Video by Bro Code

Video by Questpond

Video by JomaClass
