当前位置: 代码迷 >> Sql Server >> 存储过程中,如何把多个select结果,合并成一个结果集返回
  详细解决方案

存储过程中,如何把多个select结果,合并成一个结果集返回

热度:71   发布时间:2016-04-27 12:40:19.0
存储过程中,怎么把多个select结果,合并成一个结果集返回?
select userid,username,price,vol from table_a ...
select userid,username,price,vol from table_b...


要让这两句形成一个结果集。怎么办?

------解决方案--------------------
select userid,username,price,vol from table_a ...
union all
select userid,username,price,vol from table_b...

------解决方案--------------------
SQL code
select userid,username,price,vol from table_a ...union all--不去掉上下两语句的重复行select userid,username,price,vol from table_b...select userid,username,price,vol from table_a ...union--去掉上下两语句的重复行select userid,username,price,vol from table_b...
------解决方案--------------------
select userid,username,price,vol from table_a ...
union all
select userid,username,price,vol from table_b...
 
  相关解决方案