for example, I have a sql query:
select table1.*, table2.* from table1
left join table2 on table1.id=table2.id AND table2.someCol>123 (put it here)<p>
where table2.someCol>123 (or put it here)
it seems that the two position all can put the filter condition, and is the SAME meaning, is it?