A表有两个字段(id,name),至少有10位数的数据。 B表有一个字段(id),大约只有5000条的数据。 想要的结果为: select b.id,a.name from B b,A a where a.id = b.id; 查询的过程很慢。