select * FROM table1 left join table2 on table1.sid = table2.sid  order by table1.nametable1 百万数据 table2 几百数据  name 有建索引    速度超慢 几分钟
select * FROM table1 order by table1.name   几毫秒
为啥  我改如何改?请各位高手 提醒下