mysql - Update a record in SQL but not overwrite....add text at the start -
mysql - Update a record in SQL but not overwrite....add text at the start -
please how can update table text?
example: have text "said hello" , want create "peter said hello" - want add together word peter...
understand?
thanks much.
try :
update table_name set field = concat('peter ',field) condition; mysql sql sql-update
Comments
Post a Comment