Good evening all,
I have an question in inner join ,
I have performed inner join like this
proc sql;
create table combine as
select distinct
n.apple,
p.vegges
from
fruits as n
inner join
vegetables as p
on
n.key=p.key;
quit;
Now in vegges column I have carrots,beans,brocoli,beets--I like my data only to have carrot and beans , how will I apply this condition here.
Thank you
S
... View more