I've been searching through docs and at mysql.com but can't seem to find what I want.
I found this syntax:
What I want to do is prepend a string to a varchar column.
I tried:
which didn't work...
--
Andy
I found this syntax:
Code:
UPDATE table SET c=c+1 WHERE a=1
What I want to do is prepend a string to a varchar column.
I tried:
Code:
update table set field2="insert"+field2 where field1 = "example";
which didn't work...
--
Andy