标签: sql mysql join
如何在加入时使用两个或更多条件? 我想用它的连接版本替换这个查询:
select * from t1,t2 where t1.a=t2.b and t1.c=t2.d and t1.e=t2.f
怎么可能?
答案 0 :(得分:5)
这应该有效
select * from t1 join t2 on t1.a = t2.b and t1.c = t2.d and t1.e = t2.f