摘要:
SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')FROM information_schema.tablesWHERE table_schema = 'mydb';mydb换成你想删除的数据库的名字这样可以生成一个批量处理的sql语句,你 阅读全文
摘要:
use storeGOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type='U')>0beginSELECT @sql='drop table ' + nameFROM sysobjectsWHERE 阅读全文