These two queries are "equivalent", that is, they give the same result.
#1
select * from one, two where one.job_id = two.id
#2
select * from one inner join two on one.job_id = two.id
What I want to know is: is there any significant diference between using "explicit" Joins (#2) and using "implicit" Joins (query #1) in MySQL?
Those are simple queries, I want the general picture (for bigger/more complex queries with other clauses).
Thanks.