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
|
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
| ||||
feedback
|
|
You can use the CONCAT function to do that:
If you want to get cleverer and only update columns which don't already have test prepended, try
| ||||
|
feedback
|
|
That's a simple one
| |||||
feedback
|