Consider that the relation R(A,B,C) contains 200 tuples and relation S(A,D,E) contains 100 tuples, then the maximum number of tuples possible in a natural join of R and S.
Select one:
A. 300 B. 200 C. 100 D. 20000
It will be great if the answer is provided with some explanation.
The maximum number of tuples possible in natural join will be 20000. You can find what natural join exactly is in this site. Let us check for the given example:
Let the table R(A,B,C) be in the given format:
and the table S(A,D,E) be in the given format:
Here, the result of natural join will be:
Thus we can see the resulting table has 3*2=6 rows. This is the maximum possible value because both the input tables have the same single value in column A (
1).