一、常用的表关联方式?1.左连接:以左表为中心,查出左表的全部数据,关联字段值不相等则右表查出的数据显示为空;select * from school a left join student b on a.sch_id=b.sch_id;2.右连接:以右表为中心,查出右表的全部数据,关联字段值不相等则左表查出的数据显示为空;select * from school a right join student b on a.sch_id=b.sch_id;3.内连接:查出两表关联字段等值的数据select * from school a inner join student b on a.sch_id=b.sch_id;4.全连接(MySQL不支持全连接):sql语句:select * from TableA full join TableB on TableA.id=TableB.idMyBatis如何处理表关联?1.一对一查询(association 元素)2.一对多查询(collection 元素)3.多对多查询4.自动补全 get、set 方法