drop table <tablename>;
create table...;

解决方案 »

  1.   

    SQL> drop table bb;drop table bbORA-00942: 表或视图不存在没有表就提示错误,没什么大不了,删了后重建
      

  2.   

    可以查tab,看看有没有tname=表名的记录
    select count(*)
    from tab
    where tname='表名';
      

  3.   

    drop table table_name cascade constraints;
      

  4.   

    同意 gladness(gladness) ,
    不过要注意表名一定要大写,否则即使有也查不出来
      

  5.   

    各位!可能是我没说清楚!我是说不要人为的判断,只用一句
    sql文来实现。
      

  6.   

    DROP TAB_NAME;CREATE TABLE TAB_NAME ……;就像贝克所说的,假如表或视图不存在,就会出现提示错误,不过,没什么大不了!这个错误提示对泥建立新表毫无影响~