RIGHT JOIN
Overview
The RIGHT JOIN
returns all matching records from the right table combined with the left table. Even if there are no match records in the left table, the RIGHT JOIN
will still return a row in the result, but with NULL
in each column from the left table.
RIGHT JOIN
clause.Syntax
a) Basic Syntax
In the above syntax:
-
SELECT column_1, column_2...
defines the columns from both tables where we want to display data. -
FROM table_1
, defines the left table with table_1 in the FORM clause. -
RIGHT JOIN table_2
defines the right table with table_2 in the RIGHT JOIN condition. -
ON table_1.matching_field = table2.matching_field
sets the join condition after the ON keyword with the matching field between the two tables.
b) Syntax with an Alias
You can use an alias to refer to the table’s name. The results will stay the same. It only helps to write the query easier.
Example
customer table
It will create a table as shown below:
orders table
It will create a table as shown below:
- Based on the above tables, we can write a
RIGHT JOIN
query as follows:
-
The customer= left table and the orders = right table.
-
Then it combines the values from the orders table using the customer_id and matches the records using the id column from the **customer **table.
-
If the records are equal, a new row will be created with
customer_name
andorder_amount
columns as defined in theSELECT
clause. -
ELSE will still create a new row with a
NULL
value from the left table (customer).
- The above query will give the following result:
Based on the data from the customer and orders tables:
-
The order id:
181893
matches the customer:Ellie.
-
The order id:
181894
matches the customer:Ellie
. -
The order id:
181891
matches the customer:James
. -
The order id:
181899
matches the customer:James
. -
The order id:
181892
matches the customer:Mary
. -
The order id:
181897
doesn’t match with any customer. Thus the customer_name column is filled with:null
.
The following Venn diagram illustrates the RIGHT JOIN
: