在使用left关联中发现 没有跟left在同一逗号中的表是不能使用其 的别名和字段的。
select * from a a1, b b1 left join c1 on (c1.id=b1.id and c1.id=a1.id)
这样是不允许的,正确的应该是
select * from a a1, b b1 left join c1 on (c1.id=b1.id) where c1.id=a1.id
在select 和from中间可以出现任何 from 与 where中间出现的表别名
where之后也可以出现。