How to update all the value using MySQL query? for example i want to change all the word 'dog' to 'cat' which is located in different table rows. I usually use the line code below to update a single table row
UPDATE my_table SET my_row = REPLACE (my_row, 'dog','cat');