sql中用replace來(lái)操作ntext,text字段
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
---------------------------方法一----------------------------
update tablename set fieldA=replace(cast(fieldA as varchar(8000)) ,''aa'',''bb'')這樣的語(yǔ)句 ---------------------------方法二---------------------------- 支持text字段處理的僅有: 下面的函數(shù)和語(yǔ)句可以與 ntext、text 或 image 數(shù)據(jù)一起使用。 函數(shù) 語(yǔ)句 DATALENGTH READTEXT PATINDEX SET TEXTSIZE SUBSTRING UPDATETEXT TEXTPTR WRITETEXT TEXTVALID 主題:text字段 1:替換 --創(chuàng)建數(shù)據(jù)測(cè)試環(huán)境 create table #tb(aa text) insert into #tb select ''abc123abc123,asd'' --定義替換的字符串 declare @s_str varchar(8000),@d_str varchar(8000) select @s_str=''123'' --要替換的字符串 ,@d_str=''000''--替換成的字符串 --字符串替換處理 declare @p varbinary(16),@postion int,@rplen int select @p=textptr(aa),@rplen=len(@s_str),@postion=charindex(@s_str,aa)-1 from #tb while @postion>0 begin updatetext #tb.aa @p @postion @rplen @d_str select @postion=charindex(@s_str,aa)-1 from #tb end --顯示結(jié)果 select * from #tb --刪除數(shù)據(jù)測(cè)試環(huán)境 drop table #tb 該文章在 2010/12/14 23:38:45 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |