DROP TABLE 表1,表2,表3,...表n

解决方案 »

  1.   

    drop table 表1,表2....表n
    必须先除去引用的 FOREIGN KEY 约束或引用的表。
      

  2.   

    DROP TABLE 表1,表2,表3,...表n
      

  3.   

    我要删除master库里的用户表(由于导数据时不小心把用户表导到了master库里面)好象这样不行 drop table (select name from sysobjects where type = 'U')
      

  4.   

    use master
    drop table table1,table2,…
      

  5.   

    drop table table1,table2,......