S
suyi3026
Unregistered / Unconfirmed
GUEST, unregistred user!
同样两个表关联,哪个语句执行速度快?如:<br>select a.id,a.name,b.age from a,b where a.id=b.id<br>select a.id,a.name,b.age from a inner join b on a.id=b.id<br><br>如果a表中的数据多于b表的数据,应该把a表放在前面还是b表?