该列是“CreatedDateTime”,这是非常明显的。它跟踪记录提交的任何时间。我需要在超过100个表中更新这个值,并且宁愿有一个很酷的SQL技巧来完成几行而不是复制粘贴100行,唯一的区别就是表名。
任何帮助都会受到赞赏,很难找到更新表格中的任何内容(这很奇怪,可能是不好的做法,我很抱歉)。
谢谢!
编辑:这篇文章向我展示了如何获得所有具有列
的表格I want to show all tables that have specified column name
如果有任何帮助的话。无论如何,这对我来说都是一个开始。
答案 0 :(得分:9)
如果这是一次性任务,只需运行此查询,复制&将结果粘贴到查询窗口并运行它
Select 'UPDATE ' + TABLE_NAME + ' SET CreatedDateTime = ''<<New Value>>'' '
From INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME = 'CreatedDateTime'
答案 1 :(得分:4)
您可以尝试使用光标:像这样
declare cur cursor for Select Table_Name From INFORMATION_SCHEMA.COLUMNS Where column_name = 'CreatedDateTime'
declare @tablename nvarchar(max)
declare @sqlstring nvarchar(max)
open cur
fetch next from cur into @tablename
while @@fetch_status=0
begin
--print @tablename
set @sqlstring = 'update ' + @tablename + ' set CreatedDateTime = getdate()'
exec sp_executesql @sqlstring
fetch next from cur into @tablename
end
close cur
deallocate cur
答案 2 :(得分:2)
您可以使用Information_Schema.Columns为您构建更新脚本。
Declare @ColName as nVarchar(100), @NewValue as nVarchar(50)
Set @ColName = 'Modified' -- 'your col name'
Set @NewValue = '2013-11-04 15:22:31' -- your date time value
Select 'Update ' + TABLE_NAME + ' set ' + COLUMN_NAME + ' = ''' + @NewValue + '''' From INFORMATION_SCHEMA.COLUMNS Where column_name = 'modified'