Natural join if no common attributes

Hate picture Hate · Jan 27, 2013 · Viewed 15.9k times · Source

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)?

Answer

Andrew Martin picture Andrew Martin · Feb 10, 2013

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.