I am a little confused about merging one table into another. My two tables looks like so:
Table A Table B
id | name | likes | email | username id | name | email | username
1 | joe | 3 | null | null 1 | ben | [email protected] | user
Result: Table A
id | name | likes | email | username
1 | joe | 3 | null | null
2 | ben | null | [email protected] | user
My issue is that I do not want to overwrite the properties that are in the Table A. Is this a simple UNION?