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


data temp;
length 1 b 3 x;
infile 'file reference';
input a b x;
run;


% macro one (input);
% two;
% put the value is &date;
% mend;
% macro two;
data _null_;
call symput('date','12SEP2008');
run;
% mend;
% let date=31DEC2006;
% one(&date)


ONE TWO
YEAR QTR BUDGET YEAR QTR SALES
2001 3 500 2001 4 300
2001 4 400 2002 1 600
2002 1 700

proc sql;
select one.*, sales
from one, two;
quit;




解説: (GoShiken メンバーにのみ表示されます)


解説: (GoShiken メンバーにのみ表示されます)