Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso aggiungere una stringa a un campo esistente in MySQL?

È necessario utilizzare CONCAT() funzione in MySQL per la concatenazione di stringhe:

UPDATE categories SET code = CONCAT(code, '_standard') WHERE id = 1;