其他分享
首页 > 其他分享> > 5.9 进阶9:联合查询

5.9 进阶9:联合查询

作者:互联网

5.9 进阶9:联合查询

5.9.1 联合查询定义

5.9.2 语法

select 字段|常量|表达式|函数 【from 表】 【where 条件】 union 【all】
select 字段|常量|表达式|函数 【from 表】 【where 条件】 union 【all】
select 字段|常量|表达式|函数 【from 表】 【where 条件】 union  【all】
.....
select 字段|常量|表达式|函数 【from 表】 【where 条件】

5.9.3 特点

5.9.4 案例

select * from employees where email like '%a%' or department_id>90;

select * from employees where email like '%a%'
union
select * from employees where department_>90;
select id,cname,csex,t_ca from t_ca where csex='男'
union
select t_id,tname,tgender from t_us where tgender='male'

标签:进阶,union,5.9,查询,表达式,where,select
来源: https://www.cnblogs.com/qifanren/p/14825038.html