Hi Guys!
I am trying to add a value to the beginning of a field in my database (there are over 20,000 rows, so it's impossible to do manually).
I tried the following query, which added the value to the end of the field. Is there a way to add it to the beginning of a field like a prefix.
PHP Code:update users set cv = CONCAT(cv, 'uploads/users/cvs/');
