How to use REPLACE() within NTEXT columns in SQL Server

Tags: REPLACE, NTEXT, SQL Server, T-SQL

select cast(replace(cast(myntext as nvarchar(max)),'find','replace') as ntext)
from myntexttable

No Comments

You must log on to comment.