union 联合,合并:将多条查询语句的结果合并成一个结果
- 语法:
查询语句1
union
查询语句2
union
...
-
应用场景:要查询的结果来自于多个表,且多个表没有直接的连接关系,但查询的信息一致时。
-
特点:
- 要求多条查询语句查询列数是一致的
- 要求多条查询语句的查询的每一列的类型和顺序最好一致
- union关键字默认去重,如果使用union all可以包含重复项
- 案例
引入的案例:查询部门编号>90或邮箱包含a的员工信息
select * from employees where email like '%a%' or department_id>90;
select * from employees where email like '%a%' union select * from employees where department_id>90;
案例:查询中国用户中男性的信息以及外国用户中男性的用户信息
select id,name,csex from t_ca where csex='男' union select t_id,tName,tGender from t_ua where tGender='male';