I have two following examples.
1. Example (WHERE)
SELECT 1 FROM table1 t1 JOIN table2 t2 ON t1.id = t2.id WHERE t2.field = true
I think the faster way is to put the filter in the where clause, because it will procees that filter in the where first , and then the join clause, so there will be no need of permutation of filters.