(MySQL) MySQL doodles By Christoffer Wadensten | August 24, 2015 0 Comment -- Replace a word or string in a column UPDATE my_table SET my_column = REPLACE(my_column, 'Old string', 'New string'); --