49
49
* JOIN: Return rows when there is at least one match in both tables
50
50
* LEFT JOIN: Return all rows from the left table, even if there are no matches in the right table
51
51
* RIGHT JOIN: Return all rows from the right table, even if there are no matches in the left table
55
60
FIXME: how joins are executed. i.e. nested loop join.