sql中join和where为什么不能一起写

2024-11-06 09:50:05
推荐回答(3个)
回答1:

sql语法规定的,表join使用on来表示连接条件。

回答2:

join是表连接,where是条件,E.G.select * from t1 join t2 on t1.id=t2.id and ... where t1.name=''
join后面用on表示where

回答3:

可以一起写啊