全连接(全外连接)

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

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

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

union语句注意事项:

     1.通过union连接的SQL它们分别单独取出的列数必须相同;

     2.不要求合并的表列名称相同时,以第一个sql 表列名为准;

     3.使用union 时,完全相等的行,将会被合并,由于合并比较耗时,一般不直接使用 union 进行合并,而是通常采用union all 进行合并;

     4.被union 连接的sql 子句,单个子句中不用写order by ,因为不会有排序的效果。但可以对最终的结果集进行排序;

       (select id,name from A order by id) union all (select id,name from B order by id); //没有排序效果

       (select id,name from A ) union all (select id,name from B ) order by id; //有排序效果

案例解释:将a表和b表合并,表结构如下:
全连接(全外连接)_第1张图片

采用 union 全连接:
全连接(全外连接)_第2张图片

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

采用 union all 全连接:
全连接(全外连接)_第3张图片

union all会保留那些重复的数据;

你可能感兴趣的:(全连接(全外连接))