If a broken request was generated by a tool from an old syntax other than ANSI, the tools generate broken code. However, using ANSI joins should produce the same result regardless of the order of the tables in the from clause. it
select *
from t1
join t2 on t2.id = t1.id
left join t3 on t3.id = t1.id
( )
select *
from t1
left join t3 on t3.id = t1.id
join t2 on t2.id = t1.id
, from , , . , / from, -, . ,
select *
from t3
right join t1 on t1.id = t3.id
join t2 on t2.id = t1.id