1.

What Is An Inner Join, And An Outer Join ?

Answer»

Inner Join: COMBINE information from two or more TABLES by comparing all values that meet the search CRITERIA in the designated column or columns of on e table with all the clause in corresponding columns of the other table or tables. These kinds of join which involve a match in both columns are called inner joins.
Outer join is one in which you want both matching and non matching rows to be RETURNED. DB2 has no specific operator for outer joins, it can be simulated by combining a join and a CORRELATED sub query with a UNION.

Inner Join: combine information from two or more tables by comparing all values that meet the search criteria in the designated column or columns of on e table with all the clause in corresponding columns of the other table or tables. These kinds of join which involve a match in both columns are called inner joins.
Outer join is one in which you want both matching and non matching rows to be returned. DB2 has no specific operator for outer joins, it can be simulated by combining a join and a correlated sub query with a UNION.



Discussion

No Comment Found