您好,我試圖從一個庫中包含一個特定的列變量的數據集。例如,我想從myfile庫中追加那些包含名稱列的數據集。從庫中加入表格
下面是我的示例代碼--->
libname myfile'\c:data';
proc sql noprint ;
select distinct catx(".",libname,memname) into :DataList separated by " "
from dictionary.columns
where libname = upcase(myfile) and upcase(name);
quit;
「錯字」(缺少比較)在你的where子句中,'和upcase(name);'? –