1.union可用于表的纵向连接,语法如下
select * from 表A
union
select * from 表B
union删去两表重复部分,union all不会去重,将会保留全部记录
2.case when语句
case
when 条件
then 选项1
else 选项2
end
3.if 语句
if(条件,(then),(else))
1.union可用于表的纵向连接,语法如下
select * from 表A
union
select * from 表B
union删去两表重复部分,union all不会去重,将会保留全部记录
2.case when语句
case
when 条件
then 选项1
else 选项2
end
3.if 语句
if(条件,(then),(else))