Solution
The correct answer is 4
Key Points A "Right Outer Join" is a concept from SQL (Structured Query Language), used in relational databases. It's a method of combining two tables based on a common column between them, showing all records from the 'right' table and matched records from the 'left' table.
The result of a right outer join contains all the records from the right table and any records in the left table that match the join condition. For the records in the right table that do not have a corresponding match in the left table, the result is NULL in the columns of the left table.
| S |
Si |
C |
P |
D |
| J |
1 |
M |
S1 |
CA |
| B |
2 |
N |
P1 |
AB |
| R |
3 |
H |
D1 |
DC |
| A |
Null |
Null |
H1 |
MD |
Here the above table is right outer join they have contain four row so correct answer is 4.