Explicit Join vs. Implicit Join
When writing SQL there are two places you can define how tables are joined. The first is explicit, and is specified after the the keyword ON
in the join clause like this:
SELECT *
FROM table_a as a
JOIN table_b as b ON a.id=b.id
… Read the rest
Continue reading »