At the moment i have two tables, and I´m trying to either merge the two tables into a new one or update the first table with the information of the second.
Table A:
NAME | LASTNAME | CITY |
---|
Table B:
COUNTRY | YEAR |
---|
Table C:
NAME | LASTNAME | CITY | COUNTRY | YEAR |
---|
For update It will be the same result but instead of table_C (New table) I would have an update veersion of TABLE_A
Thank you.