For example, I have 2 tables like this
data have;
input name $ status $;
datalines;
A a
B b
C c
;;;;
run;
2nd table:
data addon;
input name $ status $;
datalines;
A a
C f
D d
E e
F f
B z
;;;;
run;
How do I get the result like below:
B b
C c
C f
D d
E e
F f
B z
The row A - a is the same from 2 tables so it got removed. I'm trying to use left join but the result is not right. Please help and thanks in advance. I'm really appreciated it.