我想创建一个像 -
这样的表%let x =ab bc;
Proc sql;
create table rx_&x as
select * from test;
quit;
无法创建,也使用了压缩和%str。
答案 0 :(得分:0)
使用%sysfunc()
以便在宏代码中使用SAS功能。
%let x=ab bc;
proc sql;
create table rx_%sysfunc(compress(&x.)) as
select *
from test
;
quit;