作者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/m.aspx?n=bbs/Statistics/M.1491700155.A.CEE.html
1F:推 imaltar: 用到macro的指令就會要有% 04/09 11:25