select * into aaa from (select * from bbb where bbb.finterid=1)
这个语句是错误的  请问怎么写

解决方案 »

  1.   

    select * into aaa from (select * from bbb where bbb.finterid=1) t
      

  2.   

    select * into aaa from (select * from bbb where bbb.finterid=1)as NEWTab
    起个别名
      

  3.   

    select * into aaa from (select * from bbb where bbb.finterid=1) T --别名这几天有好几个这个问题了。呵呵!
      

  4.   

    select * into aaa from bbb where bbb.finterid=1
      

  5.   

    楼主还是想
    insert into aaa values (select * from bbb where bbb.finterid=1)
      

  6.   

    insert into aaa select * from bbb where finterid=1