select .. from table1 left join table2 on .. left join table3 on ..
这个语句是取table1里面所有的数据吗?
对的select .. from table1 right join table2 on .. right join table3 on ..
这个语句是取table3里面所有的数据吗?
不对,是table2和table3的所有数据select .. from table1 right join table2 on .. left join table3 on ..
这个语句是取table2 里面所有的数据吗?
是table2和table1中的所有数据