Both these joins will give me the same results:
SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK
vs
SELECT *
Does it differ between different SQL implementations?
Yes, Microsoft Access doesn't allow just join. It requires inner join.
join