本章主要讲授如何使用union操作符将多条select语句组合成一个结果集。
17.1 组合查询
组合查询的使用情况:
- 在单个查询中从不同的表返回类似结构的数据
- 对单个表执行多个查询,按多个查询返回数据
17.2 使用union
使用union是很简单的,只要在多条select语句中间加上union即可。
select vend_id, prod_id, prod_price
from products
where prod_price <= 5
union
select vend_id, prod_id, prod_price
from products
where vend_id in (1001,1002);
17.3 使用union的规则
使用union时请注意以下规则:
- union必须由两条或者两条以上的select语句组成,语句之间用关键词union隔开
- union的每个查询必须包含相同的列,表达式或者聚集函数
- 列数据的数据类型必须要兼容(不需要完全相同,但是必须要是dbms能够隐式转换的)
17.4 包含或者取消重复行
union默认的行为是不包含重复行,如果你想要包含重复行,请使用union all关键词。union all的这个特性使得其与where子句不同。
17.5 对组合查询的结果进行排序
只能使用一条order by语句,放在最后一条select语句的最后即可。