Use MySQL’s concat().
If you want to update
:
update tablename set column=concat('Super ', column);
You can even add a where
clause .
solved How to add to string a new string [closed]
Use MySQL’s concat().
If you want to update
:
update tablename set column=concat('Super ', column);
You can even add a where
clause .
solved How to add to string a new string [closed]