union和union all的区别
作者:互联网
作用:
将两个select的结果作为一个整体显示出来。 满足条件:
1、两个select查询的列的数量必须相同;
2、每个列的数据类型需要相似;
语法
select * from user1 | select * from user1
union | union all
select * from user2 | select * from user2
区别
union all是将两个select语句的结果求并集。 union是将union all的结果下再去除重复数据
演示
使用union all语句
:---------::---------:
使用union 语句
:---------::---------:
标签:语句,user2,区别,union,user1,---------,select 来源: https://blog.csdn.net/m0_62377066/article/details/120742122