Say I have this query:
SELECT bugs.id, bug_color.name FROM bugs, bug_color
WHERE bugs.id = 1 AND bugs.id = bug_color.id
Why would I use a join? And what would it look like?
|
|
|
|
|
|
|
Joins are synticatic sugar, easier to read. Your query would look like this with a join:
With more then two tables, joins help make a query more readable, by keeping conditions related to a table in one place. |
||
|
|
|
The When I learned SQL it did not yet exist, so joining was done the way that you show in your question. Nowadays we have things like joins and aliases to make the queries more readable:
Also there are other variations of joins, as |
||
|
|
|
|
Join syntax allows for outer joins, so you can go:
|
||||||
|