作者wqewwqew (香草天空)
看板Statistics
标题Re: [程式] SAS档案合并
时间Sun Apr 9 09:09:12 2017
proc sql ;
select distinct id
into :name1-: from s.list
;
quit;
%macro audit_op;
%do i=1 %to &sqlobs;
data s.audit_op;
set _null_;
run;
data s.audit_op;
set s.audit_op s1.op_&&name&i..;
run;
%end;
%mend audit_op;
%audit_op
请问各位大大 教一下新手
在这里 这个%是什麽意思?
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 111.243.24.17
※ 文章网址: https://webptt.com/cn.aspx?n=bbs/Statistics/M.1491700155.A.CEE.html
1F:推 imaltar: 用到macro的指令就会要有% 04/09 11:25