This file contains hidden or 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
This example SQL is searching for Double Quotes and deleting them by replacing the quote with nothing. | |
UPDATE [table] SET [field] = REPLACE([field], '"', ''); |