(select kf ,zrw ,fsrw from xsrw where nf = '2016' and yf = '11月') a
join
(select kf as kf,sum(case when dl = '镶嵌类' then jsj else 0 end) as fs,sum(jsj) as zx from ayytjb where rq between '2016-10-26' and '2016-11-25' group by kf) b
on akf=bkf合成的表直接插入,一样的道理
insert into 新表名称
select 字段 from 表1
union
select 字段 from 表2三个表的字段个数要一样,而且类型也要一样,比如表一有三个字段,表二也应该有三个字段,如果表三只有两个字段的话,可以用空字段代替。
select
字段一,字段二,字段三,字段斯,字段N
from
表一
union
select
字段一,字段二,字段三,字段斯,字段N
from
表二
union
select
字段一,字段二,字段三,字段斯,字段N
from
表三
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)