一次从项目数据库中的某个表中插入或者更新或者删除n条记录操作t_sql语句

 Declare @newsid int
 Set @newsid=5432
 While @newsid<5769
 Begin
   insert into 表名
   select @newsid,'通过',0,0,''
   set @newsid=@newsid+1
 End
posted @ 2013-05-23 14:36  猎鹰-aspnet  阅读(142)  评论(0编辑  收藏  举报