How to replace part of String (SQL Server)

You can simply use Replace in order to replace partial text in SQL Server data table. SELECT REPLACE(YOUR_COLUMN, ‘string_to_replace’, ‘new_string’  * FROM YOUR_Table in order to update the database table. UPDATEYOUR_TABLE SET YOUR_COLUMN = REPLACE(YOUR_COLUMN, ‘string_to_replace’, ‘new_string’) WHERE YOUR_CONDITION Keep smiling and