Right outer join
In the syntax of a right outer join, the dominant table of the outer join appears to the right of the keyword that begins the outer join. A right outer join returns all of the rows for which the join condition is true and, in addition, returns all other rows from the dominant table and displays the corresponding values from the subservient table as NULL.
The following query is an example of a right outer join
on the customer and orders tables.
The query returns all rows from the dominant table orders and,
as necessary, displays the corresponding values from the subservient
table customer as NULL.