What type of joins extends the result of a simple join
-
left join
-
right join
-
outer join
-
equil join
-
simple join
C
Correct answer
Explanation
An outer join (C) extends a simple join by including non-matching rows from one or both tables. A simple join is typically an inner join that only returns matching rows. Left joins (A) and right joins (B) are specific types of outer joins, making 'outer join' the broader, more general answer. An equijoin (D) is a basic inner join based on equality, not an extension.