In a SQL table I have two columns: the first contain a path and the second contains a value.
You have to use CONCAT
update tablename p set p.colunm1 = CONCAT("/path/",`colunm2`,"/");
2.1m questions
2.1m answers
60 comments
57.0k users