Both these joins will give me the same results:
SELECT FROM Sampletable JOIN otherTable ON table.ID = otherTable.FK
vs
SELECT FROM Sampletable INNER JOIN otherTable ON table.ID = otherTable.FK
Is there any difference between the statements in performance or otherwise?
Does it differ in SQL implementations?