For example:
I have text in my column like: 'some text with word to replace' and i want to replace:
word with Word
i do:
update table set column = replace(column, 'word', 'Word');
and i get error:
Mysql: #1442 - Can't update table 'table' in stored function/trigger because it is already used by statement which invoked this stored function/trigger.