The RIGHT OUTER JOIN returns the all records of right table and matching records of left table. When no match is found left table columns will be return with the null values.
Syntax:
SELECT columnList FROM table1 RIGHT OUTER JOIN table2 ON table1.columnName = table2.columnName;
or
SELECT columnList FROM table1 RIGHT JOIN table2 ON table1.columnName = table2.columnName;
Example:
SELECT P_ID, NAME, AMOUNT FROM PERSONS RIGHT OUTER JOIN ORDERS ON PERSONS.P_ID = ORDERS.PERSON_ID; |
Output:
P_ID NAME AMOUNT 2 sandy 30000 2 sandy 22000 3 deepak 23000 3 deepak 25000 |
Next Topic: SQL FULL OUTER JOIN with example.
Previous Topic: SQL LEFT OUTER JOIN with example.