当前位置: 代码迷 >> Sql Server >> 两个没有任务 相同的字段的表怎么合并
  详细解决方案

两个没有任务 相同的字段的表怎么合并

热度:26   发布时间:2016-04-27 18:05:53.0
两个没有任务 相同的字段的表如何合并
A表:
  spmc ,spbm
  a 01
  b 02
  c 03

B表
  spmc , spbm
  d 04
  e 05
  f 06

合成表 C:
  spmc ,spbm
  a 01
  b 02
  c 03
  d 04
  e 05
  f 06

请问这样的语名要怎么写了






 

------解决方案--------------------
SQL code
select * from aunion allselect * from b
------解决方案--------------------
select * from a
union all
select * from b
------解决方案--------------------
select * from
(
select * from a
union all
select * from b
) c
------解决方案--------------------
不去重复 union all
去重复 union

------解决方案--------------------
SQL code
select * from aunion all   --加all不去重,直接union去重!select * from b
------解决方案--------------------
select * from a 
union all
select * from b

------解决方案--------------------
探讨

消息 205,级别 16,状态 1,第 3 行
使用 UNION、INTERSECT 或 EXCEPT 运算符合并的所有查询必须在其目标列表中有相同数目的表达式。
  相关解决方案