data score;
input math@@; /* 横向解析数据 */
cards;
71 81 91 100
;
run;
%let exa=score;
data temp;
set &exa;
if math>80;
run;
proc print;
title "display of student &exa";
run;

data score;
input math@@; /* 横向解析数据 */
cards;
71 81 91 100
;
run;
%let exa=score;
data temp;
set &exa;
if math>80;
run;
proc print;
title "display of student &exa";
run;


被折叠的 条评论
为什么被折叠?