Created
December 14, 2018 18:11
-
-
Save iprodev/aea95f44407a5dce2cddb262af4c9e41 to your computer and use it in GitHub Desktop.
SQL : Search and Replace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE tableName | |
SET columnName = REPLACE( | |
columnName, | |
'TEXT TO SEARCH FOR', | |
'TEXT TO REPLACE WITH' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment