SAP HANA SQL语句UNION 和 UNION ALL的用法

简介:

UNION ALL--不合并重复行

Selects all records from all selectstatements. Duplicates are not removed

UNION [DISTINCT] --合并重复行UNION 和 UNION DISTINCT功能相同

Selects all unique records from all selectstatements by removing duplicates found from different select statements. UNION has the same function as UNION DISTINCT.

合并重复行

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 * from B) AS T order by 字段名

create column table tunion_1( id int primary key, customer varchar(5), year int, product varchar(5), sales int );

create column table tunion_2 ( id int primary key, customer varchar(5), year int, product varchar(5), sales int );


insert into tunion_1values(1, 'C1', 2009, 'P1', 100); 
insert into tunion_1values(2, 'C1', 2009, 'P2', 200); 
insert into tunion_1values(3, 'C1', 2010, 'P1', 50); 
insert into tunion_1values(4, 'C1', 2010, 'P2', 150); 
insert into tunion_1values(5, 'C2', 2009, 'P1', 200); 
insert into tunion_1values(6, 'C2', 2009, 'P2', 300); 
insert into tunion_1values(7, 'C2', 2010, 'P1', 100); 
insert into tunion_1values(8, 'C2', 2010, 'P2', 150); 

  insert into tunion_2 values(1, 'C1', 2011, 'P1', 100); 
insert into tunion_2 values(2, 'C1', 2011, 'P2', 200); 
insert into tunion_2 values(3, 'C1', 2011, 'P1', 50); 
insert into tunion_2 values(4, 'C1', 2011, 'P2', 150); 
insert into tunion_2 values(5, 'C2', 2011, 'P1', 200); 
insert into tunion_2 values(6, 'C2', 2011, 'P2', 300); 
insert into tunion_2 values(7, 'C2', 2011, 'P1', 100); 
insert into tunion_2 values(8, 'C2', 2011, 'P2', 150); 
insert into tunion_2 values(9, 'C1', 2011, 'P1', 100);

select count(1) from (select  customer,year,product,sales from tunion_1 union select  customer,year,product,sales from tunion_2)    结果--->> 16

image

select count(1) from (select  customer,year,product,sales from tunion_1 UNION DISTINCT select  customer,year,product,sales from tunion_2)  结果 --->> 16

image

select count(1) from (select  customer,year,product,sales from tunion_1 union all select  customer,year,product,sales from tunion_2)  结果—>>17

image

select  * from (select  customer,year,product,sales from tunion_1 union all select  customer,year,product,sales from tunion_2) order by customer

image

select  * from (select  customer,year,product,sales from tunion_1 union select  customer,year,product,sales from tunion_2) order by customer

image

专注于企业信息化,最近对股票数据分析较为感兴趣,可免费分享股票个股主力资金实时变化趋势分析工具,股票交流QQ群:457394862
分类:  SAP HANA

本文转自沧海-重庆博客园博客,原文链接:http://www.cnblogs.com/omygod/archive/2013/04/09/3010484.html,如需转载请自行联系原作者
目录
相关文章
|
7月前
|
SQL 数据库
20、绕过去除and、or、union select、空格的sql注入
20、绕过去除and、or、union select、空格的sql注入
168 0
|
6月前
|
SQL 数据库
SQL UNION 操作符
SQL UNION 操作符
65 9
|
4月前
|
SQL 存储 关系型数据库
|
5月前
|
SQL 分布式计算 MaxCompute
SQL开发问题之对于ODPS中的UNION操作,执行计划的问题如何解决
SQL开发问题之对于ODPS中的UNION操作,执行计划的问题如何解决
|
5月前
|
SQL 分布式计算 资源调度
MaxCompute操作报错合集之执行SQL Union All操作时,数据类型产生报错,该怎么解决
MaxCompute是阿里云提供的大规模离线数据处理服务,用于大数据分析、挖掘和报表生成等场景。在使用MaxCompute进行数据处理时,可能会遇到各种操作报错。以下是一些常见的MaxCompute操作报错及其可能的原因与解决措施的合集。
150 1
|
5月前
|
SQL 存储 数据库
深入理解 SQL UNION 运算符及其应用场景
【7月更文挑战第8天】SQL UNION 概述 `UNION` 运算符结合多个`SELECT`语句,生成不含重复行的结果集。基本语法是:`SELECT...FROM table1 UNION SELECT...FROM table2`。适用于整合相同结构数据表、不同条件查询结果及跨数据库数据。注意列数和数据类型需匹配,排序规则一致,大量操作可能影响性能。示例:合并`Students_Math`和`Students_Science`表中`StudentID`和`Grade`的数据。
|
6月前
|
SQL 数据库
SQL UNION 操作符
SQL UNION 操作符
68 3
|
7月前
|
SQL 关系型数据库 MySQL
MySQL SQL error: #1271 - Illegal mix of collations for operation ‘UNION‘
MySQL SQL error: #1271 - Illegal mix of collations for operation ‘UNION‘
454 0
|
7月前
|
SQL Web App开发 安全
CTF-Web安全--SQL注入之Union注入详解
CTF-Web安全--SQL注入之Union注入详解
|
7月前
|
SQL 数据库
深入理解 SQL UNION 运算符及其应用场景
SQL UNION运算符用于组合两个或多个SELECT语句的结果集。 每个UNION中的SELECT语句必须具有相同数量的列。 列的数据类型也必须相似。 每个SELECT语句中的列也必须按照相同的顺序排列。
212 1