union 联合 合并: 将多条查询语句的结果合并成一个结果
#引入的案例:查询部门编号>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 from t_ca where csex=’男’
union all — 不想去重
select t_id,tname from t_ua where tgender=’male’;