Joins Flashcards

1
Q

Inner Join

A

Produces only the set of records that match in both Table A and Table B.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Full Outer Join

A

Produces the set of all records in Table A and Table B while matching the records from both sides where available. If there is no match, the missing sides on each table will contain null.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Left Outer Join

A

produces a complete set of records from Table A, and matching records in Table B. If Table B has no matching record, in the specified row of Table A, it will contain null in that row for Table B.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a self join?

A

A self join is an instance of a table joining itself.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly