JOINS Flashcards

1
Q

Outer Joins

A

rows from tables are returned even if they dont match

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

FULL Join (outer joins)

A
  1. returns rows from both tables even if they dont match the join statement
    example : find customer without orders or orphaned orders
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

LEFT or RIGHT (Outer join)

A
  1. no difference except in order of tables in FROM clause

2. direction points at table to retrieve non - matching rows

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

Cross Joins

A
  1. All rows match from each table (no ON statement)

2. also known as cartesian product

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