Natural join if no common attributes

后端 未结 3 490
庸人自扰
庸人自扰 2020-12-16 12:41

What will natural join return in relational algebra if tables don\'t have attributes with same names? Will it be null or the same as cross-product (Cartesian operator)?

3条回答
  •  遥遥无期
    2020-12-16 13:11

    If there are no attributes in common between two relations and you perform a natural join, it will return the cartesian product of the two relations.

提交回复
热议问题