select a.*,b.* from a,b

解决方案 »

  1.   

    select * into 新表 from (
    select * from 表1
    union all
    select * from 表2) tem
      

  2.   

    insert into recordset select * from a
    insert into recordset select * from b
      

  3.   

    select a1 as c,a2 as d from a 
    union all
    select b1 as c,b2 as d from b
      

  4.   

    select a1 c,a2 d from a 
    union all
    select b1,b2 from b
      

  5.   

    select a1 as c,a2 as d from a union All select b1 as c,b2 as d from b
      

  6.   

    用union,但要注意数据要相容的