I've just made a quick search through the web but couldn't find exactly what I'm looking for.
How much efficient an INNER JOIN is comparing to a regular WHERE statement?
I have a couple of queries in PostgreSQL that need to use some tables (say four or five) "linked" together by key/foreign key conditions. To implement those queries I'm using the WHERE clause to join all the required tables.
I wonder if any performance gains will bd achieved if I re-write those queries with the INNER JOIN clause (instead of a WHERE clause).