Hello,
Please, I want to do these actions on SAS Entreprise guide interface :
Action 1:
Proc sql;
create table m1 as
select distinct v
from toto;
quit;
Action 2:
proc sql;
create table m2 as
select *
from test
where g in('5','6') and h>1 and j=1;
quit;
Action 3:
using : left join, inner join, full join in SAS EG
Action 4:
Compare two data (d1, d2) are not in the same folder without opening any data or allocating the libraries
I do not want to make
{ ==> Libname lb1 "c:/m";
libname lb2 "c:/n";
==> data-- >compare
}
Thank you
Any documantion for using SAS EG are welcomed
... View more