Informatics Practices

What is a join ? How is natural join different from an equi-join ?

SQL Joins & Grouping

1 Like

Answer

A join is a query that combines rows from two or more tables based on a condition.

The join in which only one of the identical columns from the joined tables exists is called a natural join, while the join in which columns are compared for equality is called an equi-join.

Answered By

2 Likes


Related Questions