Question 71
Given two tables R1(x, y) and R2(y, z) with 50 and 30 number of tuples respectively, Find maximum number of tuples in the output of natural join between tables R1 and R2 ie. R1 * R2 ? (* - Natural Join)
Explanation
Previous | Next |
UGC NET CS December 2019 - Question 70 | UGC NET CS December 2019 - Question 72 |
Example: In worst case if all the values of the common attribute are same, then total tuples would be = |m|×|n| = 30×50 = 1500.
R1
R2
R1⨝R2 : result table after natural join of two tables
So, ∴ Maximum number of tuples in the output of Natural join between relation R1 and R2 = 1500 tuples.
So, option 4 is correct answer