0
Let’s say I have a table with two columns name and surname, for example:
Nome | Sobrenome
-------+-----------
João | Silva
Mike | Corin
Carlos | Rodrigues
And I want to join the column of the name with the surname, to be the full name:
Nome
-----------------
João Silva
Mike Corin
Carlos Rodrigues
How can I do that? Without it being manually, maybe with a function because it already has millions of records and doing this task manually will take too long.
will create a new column in the table or simply select ?
– Marco Souza