1.连接查询分为: inner join(自然连接,自连接) Left join(左连接)/Left outer join(左外连接):效果一样 Right join(右连接)/Right outer join(右外连接):效果一样 Full join(全连接)/Full outer join (全外连接) 2.大致语法如下: select a.*,b.* from table_3 as b FULL join table_2 as a on a.id=b.Mtype --左连接 select…