Using MySQL, I try to select, for example, the name surname 1 and surname 2, everything appears in the same column with the name Full name.
I have tried to solve it using the following but when executing it the results are displayed at 0 or null.
select nomem + ' - ' +
ape1em + ' - ' +
ape2em 'Nombre completo'
from empleados
;