> Although it’s possible to join using a WHERE clause (an implicit join), prefer an explicit JOIN instead, as the ON keyword can take advantage of the database’s index.
Don’t most databases figure this out as part of the query planner anyway? Postgres has no problems using indexes for joins inside WHERE.
Don’t most databases figure this out as part of the query planner anyway? Postgres has no problems using indexes for joins inside WHERE.