Hello,
I have2 datasets with the same strcuture.
the first holds 945057 rows and the second holds 944820 rows.
I would like to get in an output dataset only rows that are missing in the second dataset.
thanks in avdance for your help
regards
Nasser
Something like (not tested as nothing to test on):
data want; set have 1 (in=a) have2 (in=b); /* Note I do not know what variables are in each so I cannot put anything in the next row */ by ...; if a and not b; run;
You could also use except in SQL, proc compare with dataset output. Again, without test data in the form of a datastep I can't be anymore specific.
Something like (not tested as nothing to test on):
data want; set have 1 (in=a) have2 (in=b); /* Note I do not know what variables are in each so I cannot put anything in the next row */ by ...; if a and not b; run;
You could also use except in SQL, proc compare with dataset output. Again, without test data in the form of a datastep I can't be anymore specific.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.