I need a SQL update statement for updating a particular field of all the rows with a string "test" join in the front of the existing value

For example, if the existing value is try it became testtry

link|improve this question

44% accept rate
Welcome to stackoverflow! – Paul Dixon Mar 25 '09 at 10:05
feedback

3 Answers

up vote 13 down vote accepted

You can use the CONCAT function to do that:

UPDATE tbl SET col=CONCAT('test',col);

If you want to get cleverer and only update columns which don't already have test prepended, try

UPDATE tbl SET col=CONCAT('test',col)
WHERE col NOT LIKE 'test%';
link|improve this answer
feedback
UPDATE tablename SET fieldname = CONCAT("test", fieldname) [WHERE ...]
link|improve this answer
feedback

That's a simple one

UPDATE YourTable SET YourColumn = CONCAT('prependedString', YourColumn);
link|improve this answer
Correct up to the WHERE clause, where you only concat test to columns already starting with test. So: foo -> foo footest -> footest testfoo -> testtestfoo – Jukka Dahlbom Mar 25 '09 at 9:22
Thanks, guess I got the question wrong :) – soulmerge Mar 25 '09 at 9:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.