摘要: use 数据库名(是要删除表的所在的那个数据库的名称)GOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type='U')>0beginSELECT @sql='drop table ' + nameFR... 阅读全文
posted @ 2014-08-15 09:57 James·wang 阅读(478) 评论(0) 推荐(0)