select * from a,b where a.id=b.id
//如果你两个表之间有某种联系的话,如a.id=b.id
如果没有就是这样
select * from a,b
黙认是LEFT JOIN  就是将两个表按记录顺序联接在一起