selelct * from table_a a join table_b b on a.col = b.col join table_c c on b.col = c.col
selelct * from table_a a left join table_b b on a.col = b.col left join table_c c on b.col = c.col
selelct * from table_a a join table_b b on a.col = b.col left join table_c c on b.col = c.col