The keyword joinis a new way to join tables.
When I learned SQL, it does not exist yet, so the join was done as you show in your question.
, , :
select
b.id, c.name
from
bugs as b
inner join
bug_color as c on c.id = b.id
where
b.id = 1
: left outer join, right outer join full join, .