You are on page 1of 1

1.

Inner join produces only the set of records that match in both Table A and Ta ble B(like intersection in Set theory). 2. Full outer join produces the set of all records in Table A and Table B, with matching records from both sides where available. If there is no match, the miss ing side will contain null(Union). 3. Left outer join produces a complete set of records from Table A, with the mat ching records (where available) in Table B. If there is no match, the right side will contain null. This means that a left outer join returns all the values from the left table, pl us matched values from the right table (or NULL in case of no matching join pred icate). If the right table returns one row and the left table returns more than one matching row for it, the values in the right table will be repeated for each distinct row on the left table. 4.

You might also like