I have the following:
CREATE Table apellidos_completo (Completo varchar (255))
INSERT INTO apellidos_completo (Completo )values ('alvarez')
UPDATE apellidos_completo set Completo = 'Rodriguez' + Completo
I do SELECT
SELECT *
FROM apellidos_completo
the result should be
'Rodriguez Alvarez'
However, the result obtained is:
(0) osea CERO
NOTE: if I do it in SQL server if it works, fine, but in MySQL it does not work out.