I have two databases with different structure.
Table 1:
ch_code ch_def ch_weight
Table 2:
address ch_code
I need to merge this two tables, so the structure would look like:
ch_code ch_def ch_weight address
The number or rows in two tables are different (table 1 has more data).
Should I use merge
, union
.. something else?
Thank you!