select * from
(
select ..............
union
select ..............
)

解决方案 »

  1.   

    insert into view1 values(select * from view2)
      

  2.   

    insert into table1 select * from table2
      

  3.   

    to  falaly(风雨) 
    不行:Incorrect syntax near ')'.
      

  4.   

    select * from table1
    union
    select * from table2
      

  5.   

    select * from
    (
    select ..............
    union all
    select ..............
    ) aa
      

  6.   

    select * from table1
    union
    select * from table2
    是正确的
      

  7.   

    :)
    to falaly(风雨)
    最后的aa是什么意思?
    说完就结贴!