一直都对多表查询没有一个深刻的理解
经常看到一些语句比如
1:select ... from table1,table2 where ...
2:select ... from table1 join table2 还有left join , right join什么的请问:第一个语句中 使用逗号来分隔表名 和 直接使用left join 之类的 有什么区别?
另外 到底什么时候使用 left join , inner join ,right join 谢谢解答