S
softdog
Unregistered / Unconfirmed
GUEST, unregistred user!
这两个查询的效率哪个更高一些呢?
1.
select
t1.id, t1.name, t2.address
from t1,t2 where t2.id=t1.id
2.
select
t1.id, t1.name, t2.address
from t1 join j2 on t2.id=t1.id
1.
select
t1.id, t1.name, t2.address
from t1,t2 where t2.id=t1.id
2.
select
t1.id, t1.name, t2.address
from t1 join j2 on t2.id=t1.id