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

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

mysql inner join

A

SELECTt1., t2.FROMTable1 t1INNER JOINTable2 t2ONt1.ID=t2.ID

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

mysql uses which: explicit or implicict syntax

A

explicit

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

mysql three different type of outter joins

A

Left Outer Join

Right Outer Join

Full Outer Join*//mysql doesnt support

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

does mysql support full outer join

A

false

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

in mysql in a left/right ouuter join what keyword is optional

A

outer

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