MYSQL Flashcards
1
Q
MYsql Inner Join using a ven diagram
A
Imagine ven diagram of Table 1 and Table 2: results will be the overlap
2
Q
mysql inner join
A
SELECTt1., t2.FROMTable1 t1INNER JOINTable2 t2ONt1.ID=t2.ID
3
Q
mysql uses which: explicit or implicict syntax
A
explicit
4
Q
mysql three different type of outter joins
A
Left Outer Join
Right Outer Join
Full Outer Join*//mysql doesnt support
5
Q
does mysql support full outer join
A
false
6
Q
in mysql in a left/right ouuter join what keyword is optional
A
outer