因自己学习测试需要,需要两个有大量不重复行的表,表中行数越多越好.手动编写SQL语句,通过循环,批量向表中插入数据,考虑到避免一致问题,设置奇偶行不同.个人水平有限,如有错误,还望指正. 语句如下: 1 --批量向表中插入大量数据语句(奇偶不同) 2 3 --判断测试表是否存在,存在则先删除再创建 4 if exists(select 1 from sysobjects where xtype='u' and name='table_test' ) 5 drop table table_test…
--批量删除以test的表开头的表 declare @name varchar(50) while(exists(select * from sysobjects where name like test%' )) begin select @name=name from sysobjects where name like test%' exec ('drop table '+@name) end…
方法一:利用游标,但要注意主字段或标识列 declare @max integer,@id integer open cur_rows fetch cur_rows into @id,@max begin set rowcount @max delete from 表名 where 主字段 = @id fetch cur_rows into @id,@max end close cur_rows 方法二:利用临时表处理 方法二 有两个意义上的重复记录,一是完全重复的记录,也即所有字段均重复的记录…
利用sql批量删除表,存储过程. 最近用godaddy的空间,由于系统里面的表多,一个个的删除很麻烦,就网上搜集了一下解决方法. 给大家分享一下: 1.批量删除存储过程 declare @procName varchar(500) declare cur cursor for select [name] from sys.objects where type = p open cur fetch next from cur into @procName while @@fetch_status…