码迷,mamicode.com
首页 > 数据库 > 详细

遍历数据库所有表,将是datetime类型的列的值进行更新

时间:2015-06-25 17:26:23      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

declare @tablename nvarchar(80)
  declare @cloumn nvarchar(80)
  declare @sql nvarchar(400)
declare c1 cursor scroll for
 select table_name,column_name from information_schema.columns where DATA_TYPE=‘datetime‘
 open c1
  fetch first from c1 into @tablename,@cloumn
  while @@fetch_status=0
   begin
      
      set @sql=‘update ‘+@tablename+‘ set  ‘+@cloumn+‘=DATEADD(yy,10,‘+@cloumn+‘)  where ‘+@cloumn+‘ is not null‘;
      exec (@sql)
     fetch next from c1 into @tablename,@cloumn
   end
close c1

遍历数据库所有表,将是datetime类型的列的值进行更新

标签:

原文地址:http://blog.csdn.net/yangangwuwuyangang/article/details/46638229

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!