I have a table with three columns:
Name Surname NameSuname
Bob Marley NULL
John Doe NULL
I want to insert values from Name and Surname columns into NameSuname column. How can I do that?
You need to update the coumn instead of inserting
UPDATE MyTable
SET NameSuname = Name || ' ' || Surname