I have one mysql table with one of the column having some special text. I need to replace this text with new text.
data_table:
Col1 Col2 Col3
1 tc That is nice word.
2 tq nice question.
I need to replace nice word with beautiful in table for Col3. How can i change it?
Regards
REPLACE(column, 'word', 'replacement')