zwei1121

博客园 首页 新随笔 联系 订阅 管理

2010年2月5日 #

摘要: declare @table varchar(600)while (select count(*) from sysobjects where type='u')>=1begin set @table=(select top 1 name from sysobjects where type='u') set @table='drop table '+@table exec(@table)... 阅读全文
posted @ 2010-02-05 11:46 zwei 阅读(450) 评论(0) 推荐(1) 编辑