Skip to content

Instantly share code, notes, and snippets.

@bjdixon
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjdixon/42b4f32a5e1c6d65201b to your computer and use it in GitHub Desktop.
Save bjdixon/42b4f32a5e1c6d65201b to your computer and use it in GitHub Desktop.
Replace one string with another for all rows in a field
UPDATE DBNAME.TableName
SET DBNAME.TableName = REPLACE(DBNAME.TableName.FieldName,'OldString','NewString')
WHERE DBNAME.TableName.FieldName like '%OldString%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment