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