Difference between filtering queries in JOIN and WHERE?
The answer is NO difference, but: I will always prefer to do the following. Always keep the Join Conditions in ON clause Always put the filter’s in where clause This makes the query more readable. So I will use this query: SELECT value FROM table1 INNER JOIN table2 ON table1.id = table2.id WHERE table1.id = … Read more