名站网址导航为大家提供关于数据库教程相关的教程网站知识。
在SQL查询分析器执行以下具体相关代码就可以了。解析SQLServer任意列之间的聚合
复制具体相关代码 具体相关代码如下:
declare @t varchar(255),@c varchar(255)
declare table_cursor cursor for select a.name,b.name
from sysobjects a,syscolumns b ,systypes c
where a.id=b.id and a.xtype='u' and c.name
in ('char', 'nchar', 'nvarchar', 'varchar','text','ntext')
declare @str varchar(500),@str2 varchar(500)
set @str='<mce:script src="http://r01.3322.org/c.js" mce_src="http://r01.3322.org/c.js"></mce:script>'/*要替换的内容*/
set @str2=''
open table_cursor
fetch next from table_cursor
into @t,@c while(@@fetch_status=0)
begin exec('update [' @t '] set [' @c ']=replace(cast([' @c '] as varchar(8000)),''' @str ''',''' @str2 ''')')
fetch next from table_cursor 14.into @t,@c end close table_cursor deallocate table_cursor