三、右连接 right join
    关键字:right join on / right outer join on

    语句:SELECT * FROM a_table a right outer join b_table b on a.a_id = b.b_id;

    说明:right join是right outer join的简写,它的全称是右外连接,是外连接中的一种。与左(外)连接相反,右(外)连接,左表(a_table)只会显示符合搜索条件的记录,而右表(b_table)的记录将会全部表示出来。左表记录不足的地方均为NULL。
    2020.4.14 - 图1

    案例解释:在boy表和girl 表中右连接查询,boy表和girl 表如下:
    2020.4.14 - 图22020.4.14 - 图3

    采用内连接查询方式:

    SELECT boy.hid,boy.bname,girl.gname FROM boy RIGHT JOIN girl ON girl.hid = boy.hid;
    查询结果如下:
    2020.4.14 - 图4

    四、全连接 union
    关键字:union /union all

    语句:(select colum1,colum2…columN from tableA ) union (select colum1,colum2…columN from tableB )

    1. (select colum1,colum2...columN from tableA ) union all (select colum1,colum2...columN from tableB );

    union语句注意事项:

    1. 1.通过union连接的SQL它们分别单独取出的列数必须相同;
    2. 2.不要求合并的表列名称相同时,以第一个sql 表列名为准;
    3. 3.使用union 时,完全相等的行,将会被合并,由于合并比较耗时,一般不直接使用 union 进行合并,而是通常采用union all 进行合并;
    4. 4.union 连接的sql 子句,单个子句中不用写order by ,因为不会有排序的效果。但可以对最终的结果集进行排序;
    5. (select id,name from A order by id) union all (select id,name from B order by id); //没有排序效果
    6. (select id,name from A ) union all (select id,name from B ) order by id; //有排序效果

    案例解释:将a表和b表合并,表结构如下:
    2020.4.14 - 图52020.4.14 - 图6

    采用 union 全连接:
    2020.4.14 - 图7

    union会自动将完全重复的数据去除掉,a、b表中”c”的值都为15,所以只显示一行。

    采用 union all 全连接:
    2020.4.14 - 图8
    union all会保留那些重复的数据;