JOINS Flashcards
1
Q
Outer Joins
A
rows from tables are returned even if they dont match
2
Q
FULL Join (outer joins)
A
- returns rows from both tables even if they dont match the join statement
example : find customer without orders or orphaned orders
3
Q
LEFT or RIGHT (Outer join)
A
- no difference except in order of tables in FROM clause
2. direction points at table to retrieve non - matching rows
4
Q
Cross Joins
A
- All rows match from each table (no ON statement)
2. also known as cartesian product