Difference between JOIN and INNER JOIN
Asked 07 September, 2021
Viewed 2.6K times
  • 57
Votes

Both these joins will give me the same results:

SELECT * FROM table JOIN otherTable ON table.ID = otherTable.FK

vs

SELECT * FROM table INNER JOIN otherTable ON table.ID = otherTable.FK

Is there any difference between the statements in performance or otherwise?

Does it differ between different SQL implementations?

6 Answer