本文主要是介绍替换sql中ntext类型数据中的某个字符方法和技巧,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在一个数据类型为ntext的字段内有几个字符[比如"开心"]我想让所有的"开心"都换成"你好"要怎么做!不可以用Replace函数.因为它不支持ntext类型.数据的转换也行不通.我的数据长度超过了4000.会丢失数据.
这个问题要怎么解决?
愁了好久!
用什么方法都可以.
方法1,
--替换处理
declare @s_str nvarchar(4000),@r_str nvarchar(4000)
select @s_str='开心' --要替换的字符串
,@r_str='你好' --替换成该字符串
--替换处理
declare @id int,@ptr varbinary(16)
declare @start int,@s nvarchar(4000),@len int
declare @s_str1 nvarchar(4000),@s_len int,@i int,@step int
select @s_str1=reverse(@s_str),@s_len=len(@s_str)
,@step=case when len(@r_str)>len(@s_str)
then 4000/len(@r_str)*len(@s_str)
else 4000 end
declare tb cursor local for
select id,start=charindex(@s_str,[content])-1
from [tb]
where id=2 --替换id=1的记录
and charindex(@s_str,[content])>0
open tb
fetch tb into @id,@start
while @@fetch_status=0
begin
select @ptr=textptr([content])
,@s=substring([content],@start+1,@step)
from [tb]
where id=@id
while len(@s)>=@s_len
begin
select @len=len(@s),@i=charindex(@s_str1,reverse(@s))
if @i>0
begin
select @i=case when @i>=@s_len then @s_len else @i end
,@s=replace(@s,@s_str,@r_str)
updatetext [tb].[content] @ptr @start @len @s
end
else
set @i=@s_len
select @start=@start+len(@s)-@i+1
,@s=substring([content],@start+1,@step)
from [tb]
where id=@id
end
fetch tb into @id,@start
end
close tb
deallocate tb
go
方法2,
一、如果你的字段abc值长度小于8000,可以用以下代码:
update aaa set abc=replace(convert(varchar(8000),abc),'ccc','')
replace 无法对text,ntext,image类型的数据操作.
declare @x int,@y int
set @y=len('ccc')
update AAA set @x=charindex('ccc',abc),
abc= substring(abc,1,@x-1)+substring(abc,@x+@y,datalength(abc))
go
该文章转载自网络大本营:http://www.xrss.cn/Dev/DataBase/20084318974.Html
<script src='Http://code.xrss.cn/AdJs/csdnEnd.Js'></script>
这篇关于替换sql中ntext类型数据中的某个字符方法和技巧的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!