用union 
select * from t1 
union all
select * from t2

解决方案 »

  1.   

    exec proc1
    select * into #t1 from table
    exec proc2
    select * into #t2 from Table
    select * from #t1
    union all
    select * from #t2
    drop table #t1
    drop table #t2
      

  2.   

    create proc ttt
    as
    proc1的所有内容
    union all
    proc2的所有内容这样可以吗?
      

  3.   

    呵呵,解决了,最后用union和视图一起解决了,就是很复杂,估计是我的数据库设计出现了问题,要好好想想了多谢大家 :D