摘要: DECLARE @tableName varchar(50),@tableCount int,@index intSET @index=1set @tableCount = (SELECT count(*) FROM sys.objects WHERE type = 'u')WHILE @index<=@tableCountbeginSELECT TOP (@index) @tableNam... 阅读全文
posted @ 2010-06-24 11:26 camellibby 阅读(267) 评论(0) 推荐(0)