A00-212日本語試験無料問題集「SASInstitute SAS Advanced Programming Exam for SAS 9 (A00-212日本語版) 認定」


proc contents data = testdata.one;
run;


ONE
COUNTRY CITY VISIT
USA BOSTON 10
UK LONDON 5
USA DALLAS 10
UK MARLOW 10
USA BOSTON 20
UK LONDON 15
USA DALLAS 10

proc sql;
select country, city, sum(visit) as TOTAL
from one
group by country, city
order by country, total desc;
quit;






% macro houses(dsn = houses,sub = RANCH);
data &dsn;
set sasuser.houses;
if style = "-";
run;
% mend;
% houses(sub = SPLIT)
% houses(dsn = ranch)
% houses(sub = TWOSTORY)






data temp;
array points{2,3}_temporary_;
run;