To answer this question, we need to understand the behavior of a Right Outer Join operation when there is no match between the tables.
In a Right Outer Join, all the rows from the right table are returned, regardless of whether there is a match or not. If there is no match between the tables, the columns from the left table will have NULL values in the result set.
Therefore, the correct answer is:
D. The left table will return ALL rows.
This option is correct because in a Right Outer Join, when there is no match, the left table will still return all of its rows, but with NULL values in the columns that correspond to the right table.