/*********SEE IF THEY MATCH***********/
/*I have a field id in dataset Score and field id in dataset Another.
I want to compare the value of field id from Score with field id from Another
and if some of them DO NOT MATCH i WANT TO KEEP ALL FIELDS from Myset that DO NOT MATCH*/
I understand how to retrieve those ones who match :
-------------------------------------------
proc sql;
create table My_result as
select *
from Score as MySet as M inner join Another as J
on M.id =J.id;
quit;
-----------------------------------------
However I have no idea how to retrieve those ones from MySet who do not match Another.
Could you please help me with this?
Thank You in advance,
Iren
/*I have a field id in dataset Score and field id in dataset Another.
I want to compare the value of field id from Score with field id from Another
and if some of them DO NOT MATCH i WANT TO KEEP ALL FIELDS from Myset that DO NOT MATCH*/
I understand how to retrieve those ones who match :
-------------------------------------------
proc sql;
create table My_result as
select *
from Score as MySet as M inner join Another as J
on M.id =J.id;
quit;
-----------------------------------------
However I have no idea how to retrieve those ones from MySet who do not match Another.
Could you please help me with this?
Thank You in advance,
Iren