MySQL Update command
Posted
by Mac Taylor
on Stack Overflow
See other posts from Stack Overflow
or by Mac Taylor
Published on 2010-03-15T22:31:54Z
Indexed on
2010/03/15
22:59 UTC
Read the original article
Hit count: 337
mysql
hey guys
i need to add a special text to all rows in my mysql table , how to add some text to the end of all rows' content in a table just for one field
i used this code :
UPDATE `blogs` SET `title`= `title` + 'mytext';
but didnt work for me
© Stack Overflow or respective owner