407 views
0 votes
0 votes

 

In relational databases, the natural join of two tables:

  1. Can be equivalent to cartesian product of these two tables
  2. Is combination of union and filtered cartesian product
  3. Is combination of selection and filtered cartesian product
  4. Is combination of projection and filtered cartesian product

 

MSQ

Please describe your choice(s).

1 Answer

1 votes
1 votes
  1. If No common Attribute between the relations, Natural join between those two relation is  equals to cross product.   
  2. False
  3. False
  4. R Natural Join S is combination of projection and filtered cartesian product.     So according to me a and d are correct.

      

        

Related questions

5 votes
5 votes
1 answer
1
Na462 asked Jun 14, 2018
4,254 views
Consider a relation r1(A, B, C), r2(C, D, E) and r3(F, G) with primary keys A, C and F respectively. Assume that r1 has 150 tupples, r2 has 100 tupples and r3 has 75 tupp...
0 votes
0 votes
0 answers
2
aditi19 asked Nov 2, 2018
307 views
in case of outer join for combining two tables, if there is no common attribute does it returns cartesian product just like natural join does?
1 votes
1 votes
0 answers
3
iarnav asked Nov 27, 2017
580 views
Let R and S be two relations with the following schemaR(P−−,Q−−,R1,R2,R3)S(P−−,Q−−,S1,S2)where {P,Q} is the key for both schemas?R:{⟨"1","abc","p1","p2"...
0 votes
0 votes
5 answers
4
Pooja Khatri asked Jul 13, 2018
2,400 views
In RDBMS, which type of Join returns all rows that satisfy the join condition?Inner JoinOuter JoinSemi JoinAnti Join