数据库的7种Join查询,左右连接、左右外连接、内连接、全表连接、全表外连接(图解版,带建表语句)
文章目录7种join连接1.左连接(左外连接)2.右连接(右外连接)3.A表的独有4.内连接5.B表的独有6.全表外连接7.全连接8.自连接9.自然连接建表sql语句droptableifexistst_dept;CREATETABLE`t_dept`(`id`INT(11)NOTNULLAUTO_INCREMENT,`deptName`VARCHAR(30)DEFAULTNULL,`addres