How can I update a table where there is text?
Example: I have the text “say hello” and I want to do it “Peter said hi” - I want to add the word Peter ...
understand?
Many thanks.
Try something like:
UPDATE TABLE_NAME SET FIELD = CONCAT('Peter ',FIELD) WHERE CONDITION;
You tried:
update your_table set field = concat('Peter ', field) where ...