union all在MySQL5.6下的表现
Part1:MySQL5.6.25
[rootHE1 ~]# MySQL -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.25-log MySQL Community Server (GPL)
Copyright (c) 2000,
SQL中Union和Join语句非常类似,但是Union有一个限制条件:两个 SQL 语句所产生的栏位需要是同样的资料种类,最后的结果会看到不同的资料值。
格式:
[SQL 语句 1]
UNION
[SQL 语句 2]
例如:
表store_info
和表internet_sales
使用Union语句:
代码如下:SELECT Date FROM Store_Info
UNION
SELECT Date FROM Internet_Sales
结果:
或:
代码如下:SELECT D
代码如下:–合并重复行 select * from A union select * from B –不合并重复行 select * from A union all select * from B 按某个字段排序 –合并重复行 select * from ( select * from A union select * from B) AS T order by 字段名 –不合并重复行 select * from ( select * from A union all select * fro