update A,(select 部门名称 sum(金额) as 汇总金额 from B) as C set A.金额=C.汇总金额 where A. 部门名称=C. 部门名称
新建表4:select * into 表4 from
(select * from 表1
union
select * from 表2
union
select * from 表3
union
select * from 表4 ) a
得出表6:
select t4.文书名称,t4.数量 into 表6 from 表4 t4 left join 表5 t5 on t4.文书名称=t5.文书名称 and t4.数量=t5.数量 where t5.t5.文书名称 is null
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)