MySQL: Inner join vs Where [duplicate]

As pulled from the accepted answer in question 44917:

Performance wise, they are exactly the
same (at least in SQL Server) but be
aware that they are deprecating the
implicit outer join syntax.

In MySql the results are the same.

I would personally stick with joining tables explicitly… that is the “socialy acceptable” way of doing it.

Leave a Comment