I have two tables
table 1:
name| count
xxx | 1
yyyy | 2
zzzz | 3
table 2:
name |count
xxx | 1
aaa | 5
I want the resulting table to be like the following table:
name | count
xxx | 1
yyyy | 2
zzzz | 3
aaa | 5
Does anyone know how to do this?