select b.名字,a.字段1,a.字段2 from a,b where a.id=b.id
就这条语句就可以
SELECT * FROM a表 LEFT JOIN b表 ON a.省id=b.省id;