Which Joins allows to bring non matching data in TSQL
-
(a) Full outer join
-
(b) Inner join
-
(c) Right outer join
-
(d) Left outer join
A,C,D
Correct answer
Explanation
Outer joins (left, right, and full) are designed to retrieve non-matching rows from one or both tables, filling missing columns with NULLs. An inner join only returns rows where there is a match in both tables.