Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Concate string em MYSQL


Use MySQL CONCAT função:
UPDATE tblName SET colName = CONCAT(colName, "||20") WHERE ...;