Search and replace part of string in database

前端 未结 6 1976
余生分开走
余生分开走 2020-12-04 21:11

I need to replace all iframe tags, stored as nvarchar in my database. I can find the entries using the following sql-question:

SELECT * FROM databasename..Ve         


        
6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-04 22:05

    Update database and Set fieldName=Replace (fieldName,'FindString','ReplaceString')

提交回复
热议问题