I have a list of names where the names and surnames of the users are separated by commas (surname1, surname2, name1, name2) the question is how do I separate each of those names in their respective columns when I make a select?
What I did
select
nombre_APELLIDO AS 'Nombre Completo'
from
[FUN2020]
I get
but I don't know how to write an output where I get each of the columns for each word.