I was wondering if there is any difference in the way SQL performs on these join statements:
SELECT * FROM a,b WHERE a.ID = b.ID SELECT * FROM a JOIN b ON a
See this
INNER JOIN ON vs WHERE clause