sql语法规定的,表join使用on来表示连接条件。
join是表连接,where是条件,E.G.select * from t1 join t2 on t1.id=t2.id and ... where t1.name=''join后面用on表示where
可以一起写啊