MySQL Tutorial

A database system used with PHP.

MySQL RIGHT JOIN

MySQL RIGHT JOIN

The RIGHT JOIN keyword returns all records from the right table (table2), and the matched records from the left table (table1). The result is 0 records from the left side, if there is no match.

Syntax:

SELECT column_name(s)
FROM table1
RIGHT JOIN table2
ON table1.column_name = table2.column_name;

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics