How to Update Column with CONCAT string from another Column in MySQL
We can append a string of data to an existing data of a field by using
CONCAT
function of MySQL. In this tutorial, We will show you How to Update a Column with a CONCAT
string from another Column in MySQL. You can do this:
1 |
UPDATE employee SET email=concat(first_name, '@techarise.com'); |