Just need to append new rows from one SQL Table to another. In the example below, I just need to append Table A to Table B.
SQL Table A
FOLID
---------
1234
3333
SQL Table B
FOLID AttributeID Name
-------- -------------- -------
99998 33333333 Test
Expected Results:
SQL Table B
FOLID AttributeID Name
-------- -------------- -------
99998 33333333 Test
1234
3333