select * into a from a$ 报错,数据库中已存在名为 'a' 的对象

解决方案 »

  1.   

    insert into a select * from a$
      

  2.   

    select * into a from a$ 报错,数据库中已存在名为 'a' 的对象
    --------------
    首先 drop table a
    因为a已经存在,不能重建.
    用insert 语法可以在已经存在表中增加记录,但是select into语法只能生成一个以前不存在的表
      

  3.   

    drop,insert语句都写了,还是已存在名为 'a' 的对象
      

  4.   

    drop table a;
    select * into a from a$或
    into into a select * from a$
      

  5.   

    select * from sysobjects where name='a'
    看看都有什么对象  都删